DOMAIN: Health Care • CONTEXT: Computer vision can be used in health care for identifying diseases. In Pneumonia detection we need to detect Inflammation of the lungs. In this challenge, you’re required to build an algorithm to detect a visual signal for pneumonia in medical images. Specifically, your algorithm needs to automatically locate lung opacities on chest radiographs. • DATA DESCRIPTION:
- In the dataset, some of the features are labeled “Not Normal No Lung Opacity”. This extra third class indicates that while pneumonia was determined not to be present, there was nonetheless some type of abnormality on the image and oftentimes this finding may mimic the appearance of true pneumonia. Dicom original images: - Medical images are stored in a special format called DICOM files (*.dcm). They contain a combination of header metadata as well as underlying raw image arrays for pixel data.
- Dataset has been attached along with this project. Please use the same for this capstone project.
Original link to the dataset : https://www.kaggle.com/c/rsna-pneumonia-detection-challenge/data [ for your reference only ]. You can refer to the details of the dataset in the above link
PROJECT OBJECTIVE: Design a DL based algorithm for detecting pneumonia. • PROJECT TASK: [ Score: 100 points]
- Milestone 1: [ Score: 40 points]
*Input: Context and Dataset Process:
Step 1: Import the data. [ 3 points ]
Step 2: Map training and testing images to its classes. [ 4 points ]
Step 3: Map training and testing images to its annotations. [ 4 points ]
Step 4: Preprocessing and Visualisation of different classes [4 Points]
Step 5: Display images with bounding box. [ 5 points ]
Step 6: Design, train and test basic CNN models for classification. [ 10 points ]
Step 7: Interim report [ 10 points ]
Submission: Interim report, Jupyter Notebook with all the steps in Milestone-1
import pandas as pd
import os
import zipfile
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import math
import numpy as np
import seaborn as sns
!pip install pydicom
Collecting pydicom Downloading pydicom-3.0.1-py3-none-any.whl.metadata (9.4 kB) Downloading pydicom-3.0.1-py3-none-any.whl (2.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 22.6 MB/s eta 0:00:00 Installing collected packages: pydicom Successfully installed pydicom-3.0.1
import pydicom as dcm
# Step 1: Install Kaggle API Client
!pip install kaggle
Requirement already satisfied: kaggle in /usr/local/lib/python3.10/dist-packages (1.6.17) Requirement already satisfied: six>=1.10 in /usr/local/lib/python3.10/dist-packages (from kaggle) (1.16.0) Requirement already satisfied: certifi>=2023.7.22 in /usr/local/lib/python3.10/dist-packages (from kaggle) (2024.8.30) Requirement already satisfied: python-dateutil in /usr/local/lib/python3.10/dist-packages (from kaggle) (2.8.2) Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from kaggle) (2.32.3) Requirement already satisfied: tqdm in /usr/local/lib/python3.10/dist-packages (from kaggle) (4.66.6) Requirement already satisfied: python-slugify in /usr/local/lib/python3.10/dist-packages (from kaggle) (8.0.4) Requirement already satisfied: urllib3 in /usr/local/lib/python3.10/dist-packages (from kaggle) (2.2.3) Requirement already satisfied: bleach in /usr/local/lib/python3.10/dist-packages (from kaggle) (6.2.0) Requirement already satisfied: webencodings in /usr/local/lib/python3.10/dist-packages (from bleach->kaggle) (0.5.1) Requirement already satisfied: text-unidecode>=1.3 in /usr/local/lib/python3.10/dist-packages (from python-slugify->kaggle) (1.3) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->kaggle) (3.4.0) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->kaggle) (3.10)
# Upload the kaggle.json file
from google.colab import files
files.upload() # This will prompt you to upload the kaggle.json file. please upload your json file. this key is belong to me
Saving kaggle.json to kaggle.json
{'kaggle.json': b'{"username":"vishjani","key":"268c8a10232dfe9f51f6078fcf084e6b"}'}
# Set up Kaggle API configuration
# Create the .kaggle folder and set proper permissions
os.makedirs("/root/.kaggle", exist_ok=True)
os.rename("kaggle.json", "/root/.kaggle/kaggle.json")
os.chmod("/root/.kaggle/kaggle.json", 600)
# Download the RSNA dataset
#use your google drive or physical path of your computer
!kaggle competitions download -c rsna-pneumonia-detection-challenge -p /content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge
Downloading rsna-pneumonia-detection-challenge.zip to /content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge 99% 3.64G/3.66G [00:44<00:00, 115MB/s] 100% 3.66G/3.66G [00:44<00:00, 88.4MB/s]
# Unzip the dataset
#use your google drive or physical path of your computer
# Specify the path to the downloaded zip file
zip_file_path = "/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/rsna-pneumonia-detection-challenge.zip"
# Specify the directory to extract the files to
extract_dir = "/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge"
# Create the extraction directory if it doesn't exist
os.makedirs(extract_dir, exist_ok=True)
# Unzip the dataset
with zipfile.ZipFile(zip_file_path, 'r') as zip_ref:
zip_ref.extractall(extract_dir)
print("Dataset unzipped successfully!")
Dataset unzipped successfully!
# Verify the dataset files
#use your google drive or physical path of your computer
# Specify the directory containing the dataset files
data_dir = "/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge"
# List all files and directories within the data directory
for root, dirs, files in os.walk(data_dir):
for file in files:
print(os.path.join(root, file))
Streaming output truncated to the last 5000 lines.
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36d55e8a-0fa3-4af7-91e7-725bbdbd442e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e6124983-5035-4478-9429-7b04c5de614b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a742398e-dc51-4c5e-9b98-90cbfc75c9ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95cadf88-afc4-445b-8198-e8af982a9294.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed282a1c-7989-4924-9209-61d3e6b30785.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/695040a0-f7dd-46b4-8eb5-5dc87290e43b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a7b0cc8-af04-4d2c-9267-6fdfb05f48f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3a7782d-13d4-417f-b897-67e873c757c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/beaee8dc-2b30-41c5-b646-b6f602b965a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cf710f7a-b44b-43ed-ac8a-8f6fd1a549d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0f19df40-34dc-49c5-8a24-2879431284b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4e287d07-4d9b-4a79-86d1-86d9cc3946f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b7504b85-0975-431c-a3dc-015e668f43ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/649c38fe-d7aa-423c-8dfc-23d61cd9d4b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/27873b15-51d1-4313-8447-bc2fc9090d6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9230537-bb87-4de7-90f1-73bc730d4b3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/147896bf-619c-4a0f-afc3-f0459340cbb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b25f283e-c7d0-47b0-8daf-17e79407866a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8da57631-72c3-484c-82e5-34a124170d98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8cef11d6-2789-4ea3-9a46-92e2a34dd02d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/16ff6076-49e4-4e35-9ecc-2fd80c9d0508.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1852588b-b539-4f23-810d-0d4563ae9743.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d8e85dea-a9a1-4c16-94db-abe323de34ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3817e718-4a42-4d67-a34a-ab1a4b9d52b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a1117fae-52ac-4367-a7b9-f1ecf3991ac6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bb7973b1-58b1-4e2e-b687-144e179f0996.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/85a0ed85-032e-42fa-b4b8-83ae79c9a2a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/48f71d7f-72ea-4993-a9df-11e808508db4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0bcb0834-efa8-4fcc-9082-4a2dd4506dc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/177423d8-e811-4fd7-bfba-6b77b479e466.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f5b67371-5425-4409-9065-3ab3f48afbfb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bb91c165-aa67-40b5-ac57-ad8458036952.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/13e4a88e-245a-491b-9cd7-a8672c98175e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e22136f5-4d6c-4d2d-aa6d-4585aad874f0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9ca3feed-1e10-4e30-ae69-192387a494c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/50d2c928-9230-40ee-83d9-8bc448f9c72f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3673cc6c-6c57-4910-ace9-795fe9a4d0c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a74c0ae3-321d-489f-89ab-afe2d8346330.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d53cee27-787e-4136-aaf6-03bcff985ac9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/51cfb573-cbc6-40e5-ae8a-541adcd77003.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55aed888-2950-4fdc-98d4-ddf6c18908e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/281d879b-1f4a-4ef9-a88a-c311d31415ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f8e8da4e-f23d-477a-84e8-4e45eaa25fca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b6895077-3de9-4317-95a5-94950eb2ba73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b558fb6-d2d5-434a-83f4-8c37eb36e78c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/193614a7-cca5-4108-a812-513722a6af08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ccfbaff8-5325-4381-b020-7093accfaa9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/548b0ce7-2797-4d24-814e-d419d2e82fb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a003bb5c-0638-4826-a207-bb8dfb559839.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/43b52b07-3647-4f6b-86bf-ca1e37ff3ea4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dee054ff-0e1a-4167-b814-cbf339cf689c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f15aaac3-9bfb-408d-bb20-f5f83792dd29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d22ba9ce-bab2-489e-90d9-f13c1195aeac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c75c896b-a714-4b15-9b0f-e688084c7b88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ce122d86-5255-4f1c-a4c2-6efe31a06c80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f566c3b0-cfd0-4857-8155-6e4c44e5c442.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7e09b277-5e10-4ad5-9bb3-d72fe959e6db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d50b31c0-05b1-404d-a03f-330d2b13a1b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4f66208-8c31-433c-9f82-72104bc35112.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f3088d94-d727-4381-ab83-1b2bc54c2505.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e5410a3f-3fd3-4ac4-b6c0-b27db52aaa3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37f025d9-05c0-4e27-9a75-2e6a2085fa30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/99d7ec46-cb39-4769-8560-70c452a0ddc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78b966bb-92af-4ecd-a89c-2d4b80ab8b14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95500173-35a4-4754-9711-643ed5a27157.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d8cf8e37-9ba7-47ea-9e78-0c635e550583.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3993a64f-ab45-4594-abe9-2807e19a1d71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2b76f7eb-f9ed-4b9a-aab6-10091c363221.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8966aa93-d9f3-4314-a54f-a7353ea12c6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ad07e798-4dea-419f-94c3-f6ae51875465.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6db5a292-f0b6-4e23-baff-001031e582c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6d93e4c8-6136-496d-a315-b3a7cbd3132d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f8d6fe6f-1c5d-4fb9-b8ba-ab07920252d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4520c7c6-1a03-48b7-a3c1-41bd06d18b70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c52238be-8bf4-42d2-98d1-361fe0447b14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/631f9025-e04f-47c4-8db1-de7ddf0c8b60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5315efe-b147-427e-b81b-d1cb0bba68ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5777035e-6415-45c0-a12c-b85f01256574.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d3db388c-dc0f-4d50-976d-0109554d56af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2050fb88-70cb-40db-810d-038337613147.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ffe9a1c4-634d-408f-9b0f-8098ffb78a4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/51321c71-5485-4a6d-a6e0-7c2aa61fedb7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9ffd2657-09eb-41b3-a078-144157ae5123.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77c35cf0-33fa-4851-9e84-bee7a6034a6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e0cc1c8b-2dd6-49fa-834c-94fcf8a9a0ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/70d2cfb4-2b97-469d-bb21-9b344c414dd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f947b895-67f8-4132-a24c-99f803410b4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/54be3774-7eb8-484b-8a80-19de091a658b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3cd9c2d1-afaf-466c-a465-4bd55acb477f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/646f1dfe-7103-463f-adec-2cc4f5190e90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee078a5e-c6ff-4e78-a4b2-5aee68972112.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a2f6cf6-1f45-44c8-bcf0-98a3b466b597.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e9ae2d74-c795-4903-b423-ee28fd42598f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dbb173f2-a455-49d3-80ef-08013f0a36cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7eb72f0e-3bc6-41f8-93af-58c99d6c25ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d2fe733b-8b84-4a3f-a8e9-1eaafe9f6818.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b7bec43d-211e-4526-949f-a6fc3dabbf96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aa47c55a-7cf7-4105-9132-de080664f052.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6ce2244e-e4ad-495f-9779-8c5cfd824199.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b22ec95-9141-4174-b2cc-f20258639eaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0f5460cd-0847-4977-9bbf-01de53f44f45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3331a818-6190-4caa-8e71-1849f68d1557.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdc61d06-50cb-4f97-914e-eba06a7f6552.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f890cd67-ad53-41ff-bfd5-43419a2bd481.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dde16ef3-48de-4371-8d7a-2748b20a73e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e44dd90-b1e7-483a-9e7e-4ef2e6104330.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0ded4efe-1a9a-4980-aca2-9d2c49632917.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/961e072e-bdaf-4241-9763-fbbc2dc2ca24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/479c8352-38cc-4af7-87f0-125b8f1564bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/30181ed4-6337-47e1-89b7-9dfe63c95131.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/45e18056-b7eb-4477-8eeb-7b740b61e093.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc4e43bb-a9ad-4554-b060-2a64414cd6df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbf7eeaa-32ff-4e80-9b44-37c686a6d4db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b02feb41-867a-45b8-a15c-526019267e0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e983d088-c55f-46d2-a52d-467df77a2fa5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a9552aa7-691e-40ab-835b-16237c608b03.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34aca5a7-7786-4060-afea-cf31d8fc05d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46e03a36-7c4a-4c20-a0b9-612e1469998d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7eabe6a9-1bd5-4f58-b043-4bb3a91f61a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7e641a6-a80b-4314-961d-d63e4a54d5bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/62dfc10d-f6fa-425c-8ad9-c20f11820507.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c47f8613-f665-4ad5-bdf4-ec04570eb7ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/19370915-6723-41fe-be09-29defbd9b7c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be6444fb-5c41-436a-ad7b-278dc59eec67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66f43920-a481-4810-aae8-720ea831d3c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b1a0e72-4870-4927-8171-293f1a767bde.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d230bf50-e18f-4b8a-bc79-678edb4e1261.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c0dd2290-7dc1-4589-8061-57dfdfa23a4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/efc5ae9c-b54b-4cf3-a448-403241ec3e03.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0736db5d-1989-4e0f-99c2-c72c7fa90e8e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0294b4aa-5614-4b33-80a4-2c31b639e5b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/198eb29b-5b05-4e42-9db0-3d4ae449569a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/87e3961c-a02b-4a1b-80cc-a0f942897521.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3da1b7e0-888d-4b1b-8304-10d7d609d9ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c663e3f-3db2-43d3-8aea-b7d14564d6e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/639ee516-a6a1-493f-b718-bdde59f6eef6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a090858b-0b73-45f0-81bb-97cc645af08c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/efd12382-2f22-4c1a-8a74-93c099b9c2f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7519dec4-fc14-4b3b-821f-e440ec83624a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/389f71ac-2b49-4e1f-a32e-f678d04483c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d92d8ac9-f787-4b13-9c39-eecc6b68e2f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0aee76d8-e3e0-4150-b645-9a80a2f4208f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d17e08fa-cd21-4bd4-b3d9-3b55d51ee9cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f2ac8239-1afa-4024-877b-2b8167066232.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/87661ab3-35e0-47b1-b399-81d96fc762bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39d8b259-c37f-4e07-b128-b768d8d7a010.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3e3babaa-b242-4dac-a549-9c87dec28ead.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bf9b012d-915c-4026-b989-c05312833b38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/05576ba5-4a1e-4533-a6e3-9eee9a56368f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f92793eb-6396-4597-ad39-2cc6e8eff84b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ae5bbcb2-8f3a-4f5c-a7b1-1ecaa6a7a967.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3197fa6d-696b-4f85-905d-77b825d89a9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b13df066-d9eb-41d8-82c0-3fd56846a98f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d2863ff-7e64-4e52-bfd0-c71cf596bae5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aa97a07c-d3ba-4ad4-90ff-b49facc60664.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7e9f1e53-92d9-4cde-8d53-0a3837711cb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdc1199c-b005-4489-8767-49bbd2bfd98a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63ef3455-8f9c-47d2-a1c5-1a4c55221aee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0c0a5c4b-a671-4ff2-bdaf-3e272ef0750b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7b433c27-746c-4968-b958-397f1e81e36c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc3a4a05-cbc6-45fb-a5df-6b0675c6836d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8e45c607-73ea-4029-b9bc-adeec549b0dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3bf6bb05-9ec6-4c32-a8c4-fdd7704c188c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/35062e5b-b6ef-447d-8c60-f8673b9168df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbbd3bfd-b16b-41a0-8330-3079e17f6174.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a54fc42-0d7a-460e-8f19-2e353a01795a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/52d0b7e0-d81c-4579-be4b-a07e9124fd4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1d1d8348-c6cf-4dc4-a577-a75fa779f8f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72733084-9875-4bdc-b598-1369472f5874.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d6284121-8ea2-4bc7-b6d7-209dd36c250c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/372dc27b-20c5-418a-b09d-8816843e940e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/52ec4779-e0e9-4b01-8b61-a2222cb76a10.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3ff1c40-552b-44f9-9cc9-4362905f5eef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/49b680f2-3e37-450a-879f-ad38707de531.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d1eb2eac-bfab-4ca9-92a9-b12356b10c5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fa1b42e8-d6b1-42b2-9d1a-9dfeaa356338.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/40547a1e-6c99-4656-b0f8-28f89563dd72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4d0fcbf-b317-430e-a028-c1b1a9535f45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36d7ebd2-a4e5-42d1-bde0-c7699da0b152.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0695a0d8-d4b6-4dbe-bc04-497897e4516a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eec6148f-5a8e-48e0-967f-3f59f14c562f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bb6c3018-2141-4e13-a2a9-59b479c5abff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b44b65e1-7382-4aa6-8d87-fe6d7b4f1a17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9252b66c-825c-474a-81e2-c75919cfc8ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60d9a224-16b8-49ea-adab-ace0359c257b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e076d85a-34dc-49a7-a873-4f8d5a9c8534.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5dd76a73-b748-45ad-ab44-248db530ae41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fe261272-47af-4e70-ba04-85d9d6a3b29b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91c1f6f0-8fcb-4f64-ace6-227dea91ae1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37290d29-2a81-4c9d-aef6-15eea1376e0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c9d1b92-7592-4966-a19d-2fda0343efbf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e9b04c75-09ef-44f2-9bda-ed072c38ecf4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37da4826-2d0a-41dc-8a81-720bef416a37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b5b68263-2e13-4fe8-9c7a-ded78c7ff172.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7404b1cd-bdc2-4f4a-b2ac-9b423e2d61a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/393b8e45-6d97-4013-8100-27ebf07a1dad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9445481b-7d18-4afa-a5d6-335ff7a560fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/326f2ae5-5cd6-44eb-bc82-05d3f1aa6111.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f5958376-2baa-4471-af65-d4fc45c9f6b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/506b475a-a6f4-423a-9fd0-aeaff5df0f78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e155025b-b3b0-4049-94a5-f33c57572d7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b2202b8-450a-4ad4-bc23-cae89f7fcbd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74442060-1fa2-450e-95dc-eeb355c67b82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8eeec5b7-c69f-4299-900a-a10668cc1efe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6dad7d7d-5e28-408b-9315-a74c48d88097.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38f85ed5-7251-48e9-8c52-234be2e3f9f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/abb7db92-8361-49a9-9d87-d7091beb6ef2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4747fef-5911-464e-9854-a54718d81867.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de105d88-82c1-405a-9f70-acf2aa7c5828.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c34859e6-3443-40a9-baaa-94a51bea9da8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5cc3f4b6-2185-4016-98c8-704f65c568bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9a85c365-3daf-43a2-b607-248d093b5495.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/07125480-e928-4b5c-aaf2-62dddb1bf2a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c89eeefc-0fe3-43c9-a6d8-0d34c33c376a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55d5a0b4-ff06-4c41-8aee-d3d49febd027.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fb38c12c-50d6-4d3d-b6b4-84e2ee60f9f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/073d58b8-b9a1-4d44-ae30-9cea99efa0c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fa9d8ccd-2763-47f3-a59d-898fd7a0bd32.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ef8cb906-acdc-44ac-bb8d-05f17b86c3b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8715ecee-c904-4336-9809-c4744ae07ea0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e5d698f-5846-4187-9d51-fc336a908839.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f0830feb-474c-4435-bc96-70bfd760bfb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d1a8412a-1f42-42dc-84ca-4faa5c570620.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ca51e6f6-c3ed-41ab-bf85-6efd3aac966c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d97a37b0-1987-43f8-8fab-359c7ded9358.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/83209510-bdcc-403e-aed9-baf492a93ff7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f17bdef-37c1-447c-a41e-43ac2bf464df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8be5d4c2-445d-4a79-954a-7ff38eee5f9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ac222f9d-d6d1-4e55-8741-9c1de48849d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f08041f0-be4c-4893-858c-99465834cc0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/799c5159-a2fb-4e25-8f90-13d3e1c66354.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9836d1d6-e2e9-4070-8f44-cd1a2f6a8607.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b1831e52-f668-47a9-a900-f42924698045.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dec60960-5eca-4b1d-ac2d-b7ce2c54f535.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/491ff1d8-9dc1-4855-96b0-874870c611e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/61aceb95-fec2-409e-b106-b2f64f543261.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a383180f-42b5-478b-9a28-cd2ac6b9270f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6ef86ecb-cc66-4b49-92bd-503b08de6e86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74b3eae5-6d97-4d52-ab1c-20d9be51b413.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/591142fb-40d8-4c86-81e3-f6437d671c37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c8aa0068-f21c-442c-9487-afbea7b126a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/987237ff-671d-4142-93de-64036ccc6d8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e1103545-2a34-4b20-b924-ed21c48c9b31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a534cb47-7a26-49c2-8977-71628aa6a698.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/648061f0-085c-4a9c-8efb-7d33b0a99684.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4fdaf559-ea65-41e6-b80f-191cd8310928.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/546820e9-9ff5-4047-84cd-5bb990f20ebf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9abaa31a-ea0c-463e-bb14-285139662793.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c3a572d-819e-4024-a3ec-ae09278f4232.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b6f979aa-64e3-4211-a69d-fbe8151f6ac4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/59c74e8a-eefe-4f92-85b1-87f0d1bd34ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9904fe9-81b5-4574-9224-6258521799cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d393adf2-8a12-4ded-a842-6e4f4289fcc1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2802780-8f5c-4240-8d71-0be1664a8b6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7610cabc-b892-4a7d-9a7d-802e514fc685.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a5bfb978-b5cb-440a-8a93-7d8d2d7e8954.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74dec2ed-d868-4e2a-b24f-c48990ffa45c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/365ae7a6-dccd-4b94-b5af-c1c0eae5cd24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc00e781-40c5-43fc-8eab-ce02aa9cde99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e6115487-cda4-4314-8132-fa8dc6655afc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a64c194-635e-4ab0-aefa-aeb2be0aac53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cdcbecda-ad13-4aa2-a0af-4e32e72855e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/54682db5-0e1e-4c93-b109-3c7048f963fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b33c07b-2698-4366-90c4-94256f5f34a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/db8433df-a208-4416-a35d-d131d8e334e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4c832db7-85f5-453e-bdbf-f1978eb78a4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46f65b5b-877e-45fd-9691-8d1e69a49523.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4c2a3eec-38e9-459a-980c-545d0c50f7bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/42c272c7-2094-486c-a137-93edd11795c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/582036c6-73da-4ea8-975d-e5a7bf295187.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7873490b-1df2-4959-a095-862e921432c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/576a7e67-815c-47fd-a603-fcdab510ac78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e09b8f66-8a1f-4c0f-8c37-22e8bd0dd2f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/456df612-bc48-437d-a247-10a82d93e86e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/900ac1a5-2f31-487c-a333-b7801873a25c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eca100c2-8ef4-4fe0-acf9-56ca986cb760.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8de26f7e-0485-412f-9761-c705fb70fb58.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34858b4b-37ff-4130-be8f-7075f3f3b056.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60d3e1bc-5e25-40b6-bd12-ddbd2a3df8f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4cf194e3-ecb0-4c5e-b2e2-fe2af5469937.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e76fdddf-7ffe-46e2-8ed2-0f099b856f96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8f3fd3ca-0c18-473d-8cb0-0ddcab8e5deb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/610ea636-e9df-4a9b-a396-867c06d10cb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/703d9ff3-85c8-4769-96e1-28473b8fd41f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dcc879b2-a7f1-4526-95af-e87539dc4925.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/935f4fd2-337a-4a58-9004-2c56af697428.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dc60afe0-15d8-4f9a-a694-70a6cb9f670f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/267daad6-b373-4a1a-94b5-c2dc02f506f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1c807df9-7cf0-4f02-bb16-7ad88384ef2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f64ad96d-2e62-4d8c-96d0-bc2e99b4a1a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/355ca2f6-2947-4f1f-9d21-a876bd6df049.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ece438e6-8505-4e09-b438-f4c8428742ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38ead95b-c698-4cef-bec8-3f95005484c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1bd9de29-597c-4cba-8581-83355af4c667.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f14a89e5-643f-403b-9147-88eabb3af0a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/57b8d3ee-a555-4acb-8be1-8bfe53f1b58d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd579d75-8819-498e-8b87-113557c9c9d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/882c5097-49d9-4985-b1a4-03ca8773615d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df86f5f4-9cce-4aec-abd8-934b4e08a654.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9c33ba2b-5dc6-4133-b52a-d7858d9ef164.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb31cb03-5e10-4e97-b0c0-6308f4726306.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7c48b75c-c5af-4b6f-8bf4-f176e1a40f7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a741b52c-2fe3-434e-bdf3-b012ee8aab48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0052168-b95f-477b-9220-e26a6d33f1d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/928aaa10-715f-4b4f-a1df-16f16310b20e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/94a6538f-68d4-4edd-ba10-fa157fd9a21f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7a68a464-daf2-4942-a1e5-80c6c26ab898.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f8f17799-4475-4e81-add5-7cb50ec255fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1cc1ad56-7cf5-464c-994f-ff10d880ded9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e27c61ea-5502-4033-8c74-a700de56eea4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2cf0e85e-a6d7-4c20-a338-0a798d9a136c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/19b43d5f-840f-4eb7-b34d-e36868ee7af8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d9e3c41b-1521-489e-ad05-9da8dcbfcdee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98325e35-8c87-418b-a7c3-81b1180e85ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8944679f-3dd1-4a34-95d5-322efd9c0764.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/686b3071-ceee-45c2-ad48-f091f4f5db78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbbb6d5c-ccfc-40d0-ad22-a124af7a7681.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6ddb7028-0aef-4a7a-b869-cbdc0c54005c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/61b237ca-58d2-433e-b2e7-8ca4cc08bd88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6464e86c-9520-4d10-9395-b921f8f5e7f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5e3881b-9b54-453a-8761-4c2f88978616.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6f402f79-f774-41bd-b722-6319665ee388.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a92e6d2-4f77-4da3-8e3e-dda339b9838a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/54f6c438-e545-4474-9c62-29c173fc5e7c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cd33df08-bfe1-4185-8c7d-9beea36b60f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41d086ad-4ecb-48f9-bd7f-b3b6b338f23c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34033f0c-2a11-41f0-bd6b-116d3a2c3495.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cfcfaa4a-9c58-4eec-bb63-708e2b25df16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18f5bbd2-65a0-43a2-9b49-90e3f3c0f141.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/65738ec0-4bc7-45b4-ad9c-8d1d84b1618f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7f17ecb-3848-4edf-a51d-9d9fe1d4e8eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7f1d7c2-1fa2-430f-8b57-6de4e754c315.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/89d67820-5212-4657-b891-0859868d0097.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a73a2519-e185-4eb7-95fe-03c39509e47d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4bc0f9a-f9cb-4489-8b2f-7ab1197f148b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/83b259ab-6eb1-4e71-a724-64c64eb9cbdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a3842d1-d803-4374-a17d-b5a37e8024cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cd544eaa-5084-4bd3-81d1-8d02da582260.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5a89829f-6235-4a52-9e11-c98dd10e1c9d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37731818-2afa-4a22-bd18-db49152ae9b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a6545c44-fd70-4bf4-8099-68f614b732e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2bb1db95-73ad-46b0-8567-8a03d9a83def.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/75bcbe7d-2568-4010-a0ce-9de23d4d0b08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d51f075-7f8c-4acb-be11-4145d3ce626a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e62f39b-af79-422a-bb7a-56da69950ddf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7fc478ab-7eca-454d-885c-6aec22dc6903.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06f35e64-4b8b-404e-933a-c98f0b5614cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a8541f49-c266-4abf-b56a-0182f869393d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f21a2acc-e6f1-4132-b094-83c9e94a5e7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f653409-3233-4ab4-97f6-4647faa03e81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fcd5676f-eb5c-41e9-aae7-0c056e61f9e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/47bb2ad1-6ee1-4bd2-858e-ade3df967177.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e8bd60f4-46c4-4f84-aba8-a99deb4a99cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c3395d3-5256-4e02-83eb-e00395d2eaf5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d147d24a-84d9-445b-b9f6-60a8911d6e9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f42223b1-1a5b-45c2-a1d2-25c6df776484.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/61c03c4d-63d4-4f53-9f22-0c52e037ddfd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab08e493-1108-4f83-bf24-d47c9f6ab582.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a56f5a99-aab8-4cd7-9259-400acf454292.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3e9ff8ec-edfa-4435-a3ef-898b09b234bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98fd9f61-c988-4e19-9761-13a1a4f594b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f2a78be0-4397-4b01-8357-c2596406edd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fdc1d245-cf5c-4b71-b75d-4d6194029b53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f320219c-ef2e-486b-8a20-705e09f2ff66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ebb499bb-0329-46f3-b862-3901b992d144.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7da8d535-3d6b-43d6-9ea1-06e19b6bef73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/477bf2ae-880d-411e-bd24-7c69fe0808ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/69d9bbb9-8952-42c9-849e-c1fcff4741f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4d22644-951a-49cf-98ca-3e8119448192.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0f5b56fd-7f0f-4b80-9128-92611763172b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b16cf6b4-c3ec-4368-a95b-59c898c4d655.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1d832dea-40e3-44f2-a282-6347a6733941.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eb3ee01c-739c-4c97-b31a-8522f2926981.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b18dcfc-c526-435b-aea8-d8038aa224ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95e6c3a5-1f34-4b87-8a71-a73032470fc0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f3f0adc-0d3d-4fbf-b24a-e2b1ccb4af93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e3dca188-6311-4214-9d15-c1d4ba4dea55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/99306946-1577-4724-be54-9b8b1b1a7869.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f320d4f9-9c2b-4b13-aae5-5c9e751a2e45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7944ddb2-ca88-4e4f-8311-65aa85ee58bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fc859be4-b0b6-4f91-aebf-98d3afe280d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/454b98c1-3a2d-49a1-bfd3-8e43c3c1ce55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a58b8dca-87bc-4461-be69-11acd06067d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a5327d8-8830-4ae2-bd6b-293f5aa42d4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5bab9e56-d8ea-47a2-8848-fd768e4a52af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f6e13f4d-82c4-44ea-ac28-14921fec4ae9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c392281f-30a4-4ec5-a435-3d6e107cc562.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab647d00-1311-4e6a-baf3-f507a55778bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7458102-3a49-4018-a66b-023eecfca5c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d84420c3-ad2e-4308-8686-22cf5035c65a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0087bd3a-55a7-4045-b111-b018fa52d361.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6db9b51e-72d8-4511-b113-fa0ef0387fe3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5fee7685-a1eb-4be4-8054-e550d86f863b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0f0454e-ad0f-41a6-bd13-56d74e7dcc63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4033a4f-d346-4820-9905-1f9dc55998db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/414e4ca5-583d-4518-9e9a-de70d68dc8af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/742b3d3c-7931-4c37-8157-f883aa834aeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/977d629d-429c-4af1-bbb9-d2e8b6bac2d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41061f8f-e709-4be4-ad2c-fa6ac0472678.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f99c02a3-1731-4d3b-80c2-fc0cf713787e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2a06d754-7673-412c-a700-f5bfc7157d51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cd8de9ad-7056-4e16-9e82-01f2f7d34f57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/79356c8e-1bc9-4385-a4e1-059a1526c894.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b52ab92c-9e5a-4db9-98f9-5334f2e409a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/745b583f-24ab-4ec3-95a3-c244d4639957.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7fcd6bd-940c-4ef9-94f1-8c322bf53586.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a4bcdf3-3044-45a9-98f9-d34bc9d3eed7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c87c6aa2-0530-4693-8262-902153c69e48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ceea22bd-493f-4d24-a49d-e13d70b3a01d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7d1b94bf-9fb6-4191-bf69-09549b4a3b96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb69424a-565c-4b47-9f54-18f67d7a6531.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a374967-8ef8-4d34-94cc-a06929836723.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9ed4a658-6a47-4e23-934f-a9a9d73f4680.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9fd2573-c775-4711-ac2c-37ae51e5d345.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38b5cc87-2d8e-4a8d-a578-d699e76bc4c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d187294d-3dff-4de1-9bef-90a4f4c76cef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3ccba5a4-1aff-41c8-967c-af086e10d071.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a9be2ad9-4a05-44bd-b5eb-a0938bc06363.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/230cf514-a68f-4a2e-8d76-14756b40d4d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ce421618-e170-4cb1-bab4-4faa22cac209.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71a96026-101c-4da6-a576-60cd288b9733.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4f3a1d1-79ad-44c7-8176-e95aea32b5a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/515ab870-a80e-47f1-bd51-05a6fc02cba0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d95cc647-caee-42f2-8229-0d22d64d92f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8e2001aa-2958-4e86-a73a-c3c1eeee00cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e68a073f-1a3c-44de-8bfe-bfe2f9ca5adc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b0119d3-2157-406b-81c2-d56d0d3c4675.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b6a7730-a747-42ce-ac00-f3dcc34df307.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18774506-f9cb-497c-898f-0bade580f342.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ea0e4469-83a6-42df-b0b4-56776278ee14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1accb591-63ca-462d-8bd8-83be3cb91df2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/44dc24f3-2954-4a43-be42-eb8d52fd252f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f3f36ca-e8f7-4de2-beb7-7548da919a62.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fb7e027c-7111-41f9-b0d6-32d16ebc2c6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3208e231-f146-41b6-b726-1d4267728342.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a885cd60-df31-42da-bf0d-6a422db89a76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c4308828-105d-4cb5-9a1a-409288788769.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/450aba30-d819-44a8-afd6-b86960a91d08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/86fdf8ff-76e8-46e3-a80e-b98921801131.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4b0d823-4c8d-42ce-8e1f-9695227bae83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c4969e49-f2c8-423c-9181-28c2e93daa20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e81cc5b5-d8d4-41ff-bd46-f54ded0868ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/869e1238-d0d1-4ade-846a-64e9ad43653f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc786d93-7738-470b-991c-64a3e3626f20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08da8f40-b186-473b-9fa3-1caa4ecdc02b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/30ed2b9d-b832-4c0a-af4d-a6ccc70ef1b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4cfb1452-b5dd-4b81-a890-8af9d3788de7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d82b903c-b2e5-454f-aaa3-2d7253858348.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/095ce5a1-3928-4120-9f15-24162c7f27c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/797862ed-42ca-4265-ad43-b2d04361700e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b96a158e-00ce-4b22-8431-05a30448d7f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17e48dc0-50da-4085-b6bc-4627c165bd13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0d1b742e-71fb-4eaa-88eb-b70e403ee565.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3ebf4e25-fb47-4040-a1f3-236fdad3e0f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dad5b145-3355-4ee7-a1ca-aba8abc3cf12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d83efbc4-5d7b-4790-9d07-36e141bf09e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3574c226-b39c-48d4-ab38-362c4e52ee82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc5b060f-45ae-4a00-aea9-1e7e386daf82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d64913fa-c9ba-4ee4-9613-8c991fd3afea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5e3da45b-f7b6-4948-aad4-7a37cf9cae5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc57e179-afc4-4b32-9294-2e3e0be31da3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/58e3c190-8ab1-465c-bf3e-22a2deb0b9f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8be6c294-7297-4b1c-947d-11816b0ad1e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4e97ddae-f34b-40e7-8c90-608aa3457008.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb510a17-89c1-4fad-9a47-89952abd7aae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c85e59c9-186d-4c31-80ed-b8fcfe353c0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f00ee9d-2d51-4ff2-845c-583904f36fd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7a39e982-e5f1-402c-b9a8-b9ee5f43fb8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/33e4e43b-054b-4537-9cd6-0fe574f7d337.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2572ca9-37e1-4558-b260-17a877ce78e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d8b457d-d0f3-4213-80ab-fdf8f6161b5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3041269d-fed6-450a-b6dc-39bce3d2dd60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/79255e97-c107-47ee-918c-6eba3081f3bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/adc43a9a-627c-47f8-98dc-e7163b786d0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a925cdd-891d-42bf-9ce1-30e7c95318be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec3a11c0-b993-47e4-a658-e6dc1d339db1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b62a579-701d-4f40-bf5c-01c21f36f149.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/88202379-2c7f-4aca-b976-dde9aca06e89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eacc422e-0f30-4176-93f6-e8d5e1c91fbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91c1c329-f7b7-440d-b65c-e15c3b31e0f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/53517578-a6f5-4822-94e0-e605746afe7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/452cdcf4-7e19-4b77-9a9e-0c3b1284bcf3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbd611c7-629b-4f62-a9b2-cc5620627c4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cafd1195-d39c-404b-9b62-9ccf3693627e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed7dc9a2-6694-4d2b-846d-acaecbabd298.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/48e5400d-0821-4d48-b83e-92c3f24c6502.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a31fd48e-8dd7-4a31-a197-ed1d67ec98cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/887f9d66-dc43-4b65-ad31-61f935b9effc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63ec0f9c-054b-494e-ac23-29b36e6b438a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9029af01-d95a-4061-bf2e-dc24e85b734a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38d37747-f284-4263-8bc2-2ff3f085a1b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b203978-2068-4a99-96e5-6417859f2b08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/316a6692-4321-44a2-b27f-ad96b2758088.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d514ea44-ae23-4c0d-886f-a4f4cb909a9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6690d837-d209-4d75-b71d-1f090745fbef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d2dc6e4-e1d4-4872-a417-5f640ddbb064.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d95fe98-3899-4bf4-8d54-c0c2ca641201.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bd6655d1-1bd5-4126-8209-0f6b5dcda965.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ac5efe45-973e-4389-9df8-a1ce33bacdb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7bba94b9-94a1-4f0b-95cc-a9d489e34c98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60dabf7b-68bb-46df-892a-7ceb8c14515f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/47565898-7e1b-4181-b5d5-28dac3623f87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2c80b7ba-3929-4c36-9fd7-c7142ae83922.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5904aef8-6b8c-4e45-a8b2-8ed4a369079f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f137fa7-6539-499e-b0d5-0e481221bf5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0f5d1591-5e8d-4328-9ba2-0d99deb8ad57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5a012222-e16b-402f-b759-efc86fb7c6ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ccc3fd5e-9bf2-4185-a408-14d01ae1866b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6d38a88c-d121-48bd-8ac6-d29098d1ecb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4de82994-1662-4fd2-ae76-e70667dab381.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b453abb-a8e9-4dfb-8484-69c62b42d1db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a623aa2f-f1fd-49e5-af35-5ff9c4c5a4f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b94eba02-b414-4186-8740-13e2696fb7a4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c830b55a-ff12-40c7-9c3e-185b88982624.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b275c38-b928-4119-8bfc-cdf34e2f58c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dce6a692-4798-4d0e-b183-bf981ce5da46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/907e4f81-3ed5-4d39-a26b-b5067d0baeac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f8e292d-940e-4f3a-9c5a-fda8338cdf84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6ec5234f-bd4b-486e-9669-fcda3d3234ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8cc0b6f0-ca96-47a8-bf47-7fe2d3641d0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63515470-5841-47cd-af05-d1169ac3a28a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a03bf35b-b57b-4cd0-bac4-c5d7c13a168a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8d2681aa-f9f9-4ca6-92e9-27fbb546d0e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/49bcf366-c1e3-4185-9626-b70108ec0562.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8ee256be-e94d-4554-8929-a352bc0fba56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/875b34e4-b58d-479f-954a-5b015071f448.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/322bc6ed-ee75-441f-b390-8cebf1f1fb82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c18e5ea-2649-46f8-aecf-e1264f0a1a2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a5216c86-9455-4be0-999b-88701b96be65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3a56044-440d-4163-a813-3c3f6fd5b68b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b134c7f3-2f65-4734-93b0-12c482e2b016.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6952e77a-cc3a-4074-9cfc-4d0f54bffa38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d2c92e2-8f0f-483a-bb3a-56ccbf24d7ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f0bd0c9-7923-4efe-9dc3-aa6d09773934.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/936f68b6-a40e-4bd7-bc4e-60ad12a4b31b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ad5f46af-9007-417b-bbd4-79e3d1672301.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4da6faee-c4af-4ea4-84a3-7c5733bfd249.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a3a3b1ab-17d0-44e2-9e7a-48f78e3bcb1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8db52d1a-b4aa-4009-a151-3200c570179e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/86f34519-a36e-462e-a8f3-842b992dc46b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d780acd3-4af3-48f2-a60a-0c56ff78de4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/44b15df6-844e-4f06-a8e1-48d9b8ed02a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b877bb8d-e274-483d-9586-397dc8897d45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3793db2d-8759-4d00-9609-91ed0c392f81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6bf1ce7c-185c-4f99-869d-8af5c72c1a5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d663a4a1-4e1c-48cb-afda-b4d35f09c9f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6fd07235-5c53-4a43-a720-6cea0b36eb59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6dd263bd-74fb-4230-be18-aad7294aebb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9891c8d-1f7c-42bb-b46f-7d60405f8c76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eec7d0df-d857-4ad4-aebf-95042462b87d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/baa329d1-6d8d-4067-b865-608869518f3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98b74eb1-7a17-4c4f-ab85-a93ac598c1c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c82c0550-03af-44e6-991f-f0be05bd7cfe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed20cdc6-e8f7-4551-a8d5-6b360b3f9c71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5969c537-343d-4127-ada3-034cb0c188a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a6b939a7-1734-425c-a4a5-0ad0422cb932.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5b35df82-9440-4634-9a28-406e1819cd4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/efec5041-2db4-4013-8dbb-3d4ef71f7323.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8889bc30-6951-4d72-89c4-48a193f88df4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b19a9422-a790-4a43-b59f-65a3bf0f16be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9d5cbfe6-4af0-4c43-8c62-c0482b7600a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/86e50988-b077-483f-8bc0-68dc74a8202d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/58569077-a334-4a12-9619-ec8ac9e1c0da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/682c1c1e-baf1-4517-a359-a1496c90c52e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/76d6667f-22b4-4bff-bbcd-97130fba3077.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a5df1553-7c85-46e6-9e0b-870d67d23eb7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7e7ac26-07bd-4fad-854d-a99270add377.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/93c8a9f8-acd9-4214-8163-3c44fb467b7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b3dccfa-0ea1-4503-9c12-47bb4008b271.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d8081452-c999-4428-8aac-9f5fad28ed81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/400c2833-e303-4822-903a-621dd055712e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b74a230-3f35-4d9b-a21a-cf2b6ae97ffc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e146d776-a1b8-4e16-a32e-ef0e6b1d7aad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/904289e4-96a1-43c8-9eed-6cec2e9c8ddd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5cc79a07-54e7-4c37-9284-5d11fad4a8a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c7f6d35-a4ab-4e95-bb92-9b82270f7ef4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c504018d-eaa1-4b91-a28b-b250ce9861ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec3bdec5-13df-49c0-862a-c8dd8124bfce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd636913-f8cf-4463-9191-b9014b5d1055.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c8e970b-273e-4c71-a875-34745d5e0248.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdf9677f-6a0d-46ab-81f8-e6b64b8e839a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78d267de-aefb-4e2b-9489-e6c4fcd3a852.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36f22c61-5bff-4583-8269-35d25b6bb2c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2d86046-7af9-4019-b130-9e9bfde1abfe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e04808e4-4c7c-4176-ab83-31d41b8a9766.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2a326b7-f959-4ca2-a298-0ce9093cae23.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7d3b3dd0-2fa5-43dc-a84b-673bc0eebaa7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2c46620c-e440-4dde-b107-30f9fdc6f619.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8bd092f3-8098-4b44-b0e5-72f8449df38b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eeb9f766-b980-4161-8560-dd2fc3f15ce9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af8a9a3f-9487-454b-8ee6-65c9554f3a87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a6a420f8-b676-49e1-9273-fd1b9f9fdfc9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/29f2adf8-dbe1-4b33-b01f-91b34f875420.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff40a703-b1db-48d5-a176-0b50763f9a0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3ed4cdc-183a-4b8f-a51f-d915d912abab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/48ccd5bd-0c7f-41bf-9b7c-9aa548a04a1b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4813808-ca4e-4ded-b12c-cddfd746dbac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9844b562-7125-48f7-a02b-5e0f256e290e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c803f210-4cf1-4914-8399-5950ee8b95d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/545258bb-53e4-4219-9b5f-62d18661eac2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b7e354c-b6b4-4abd-be33-d09ee32e1458.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e27b401c-8464-4536-837d-2abe2438ed39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/43d0da27-ce2d-4a1e-a61f-f76c922b7343.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7b621e4e-0f8f-4b7f-8a67-4f1b365d357c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34a2b7ac-0be6-4ea4-95f9-d766c978ff45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41162fc4-9466-43c3-8475-d04a09db2ecc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b635c7ce-7a25-4da8-a83b-3150fa0c56e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1ccb82e8-abb0-406e-8c63-45603141f8b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be5d423c-9ebc-4a04-b342-f92b819a3a99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0637b804-e693-48d1-8716-f7c63ce6162a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5b453624-5786-4722-9dc4-526884147006.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0eb06a7-f29d-4ced-8c98-e0e4a3e3b0b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cae8e499-0d13-4540-889a-68c0b03e54c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b6a3a33-e09f-4edd-baba-5bb9b34fe71d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/926ac0d1-2381-4f31-b885-8598694881ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6732e2b6-1aa2-4731-89fa-6e2dd58c3195.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a45224f6-19aa-4493-b1bc-112cab3fe2f0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9889dd70-f91b-462c-a5ce-8b77b97052a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2e4b20f7-69c4-4680-9c8b-6984c195b1cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d3cf7a30-f824-4308-96ff-b1f288c66032.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b78c702b-726a-4bc1-b92c-44fe6ccc18ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4e27dfb7-0951-4b29-9851-b28d24f9b9f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08b9ee23-ff64-4494-b293-5e43f3de3453.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/67d69522-a9b7-4c02-86b3-2d0c6a031121.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a46f2e04-c730-48a4-916f-2620194cd317.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6caee0d7-2339-4d52-a429-a098a6cbfe0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/88334a4b-2cbe-44e1-8e19-2d45a576be9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d18f4964-da90-4c37-bb7b-4ce1b2bbb6af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74d35cd9-9847-4a97-a83a-22fc9eeb5dc0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55abf5e9-a924-4ac1-b397-d5404b421b79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd1c3cab-8b7a-4922-95d4-ddfd2c686d15.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed09e414-bcdd-4342-aab8-3b286a54facf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7ced97c-cf41-4868-8d6b-b9cf5dd1dcc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd91c06f-552a-4f14-96a5-36c6dace4679.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5d2690ea-6ad7-405c-b320-27be55889413.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e1fe0053-bfeb-430f-9408-a0363c8b7d76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7487750-fcfe-4b9c-8885-4466b9b85f3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7a6b03a2-68f3-4c26-9e8d-c2208505b352.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8992fd71-2070-4b0d-8098-07940eddfbb5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7661af4-f66e-4867-a3d6-7e1fab5aabb2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5d59db9-58ab-4164-9d77-4e9ac03ec273.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4291fe4c-ccd9-463c-a29d-e4f1ef6b73ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73c83dfb-5e65-4dd5-a5e1-58372c922259.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18536f77-096d-4d43-8bd2-3fdf65c9969a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6917d6dc-90c7-47cc-8169-f02d0df8a0aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4709d121-df3a-439b-8349-93439292a936.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8d5bdaad-c168-4269-a45d-e35d00bb6922.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7700f140-9d99-472e-a862-8f590166d767.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba5b22cb-77dc-4ee7-b18f-8bbed5112712.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e3b1e7ed-b9ae-4061-a210-5444b7a9c9b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d50fda2c-beed-4326-b6b8-3c5ff1cefc48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/633192a2-d31a-42ed-993d-0d84c25d6eb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73b46983-7780-4d82-874a-d9255dd639cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/427202fe-671a-446f-b522-881db579dfb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f5d3f075-33f7-4aab-afcf-d96e514f3dfc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee7d1bb3-2212-4a18-8799-ae40c9af255c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/466923ee-bc63-4b8b-8129-929e3a303c8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/545eea70-f537-42bc-95e6-79e0c59f4c68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91a4c9e5-1800-42ca-87d1-6762cd65bf51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cd1b5928-d462-4b44-a6c6-c85558b4b6ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d447f2b6-9217-4b6f-ab02-a0763594ef75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f22ab940-5bd1-48eb-b62d-9d698f09ecb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cad68992-1044-404c-902a-8613f513186b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7cc1b757-2b45-4d61-83ca-dbf4b5838939.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a25056f9-2c4e-42f3-a035-26552647dcd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17bbf318-ef96-4dac-99e0-59fae5c60b56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d0bca0d-9a01-4379-b8e9-3af3b021ad79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3f9cbb35-7549-47f6-838d-c079cb86bb42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78cff8f0-fcc1-4375-842d-d5700bd401e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5819ad1-5784-4db3-83d7-3d3a2d348287.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fc66e9e2-e79a-41bc-b0ec-b67fba51ad1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdb78a39-ecde-436d-90e7-9254fe934993.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b903affb-9f24-4816-9141-164181d4d3ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4582311-c163-4771-94dd-a516f61f1b88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b94ef581-b098-4fa2-909f-96f22d6fd446.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/082fb468-30f1-43c1-ac04-62d16fdd883b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df4d746b-2f45-4aab-a83c-258216d97a50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/156a563f-4580-41d9-b930-2c6859478b50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a7e875c8-2f8e-4eb1-bb43-5a5f7d206ba9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/67f04d37-ce6b-4900-95c3-dc622772365c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c4819731-dc22-4159-a654-57cae0b6ea14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b2aaf6f-3a6f-4033-a366-309c7b524cbd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/94d1ca2b-d0d4-43c9-a3aa-71b664c810b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af387f75-2b11-4210-8ca5-aeae34b354c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/90dccc5b-5e52-4cb8-8bd7-36a931dee30d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/05f42ea0-fa18-47ba-80a7-e070307300bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af0894a8-0a8b-4327-add9-a3bdcb425b76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/382db3e8-f756-48c5-8def-e0630634a680.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/184ef9f7-6954-4834-817b-9dc9ee976847.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9cea3498-7354-4557-a80b-85e0544e4a6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9b583922-f773-4fbd-9be5-35149a9a678f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dccf4ea8-192f-4749-91e5-63defbc74f29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f08094e-9855-45c7-ac2b-1375e23f6b2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f3c2906-55ce-467c-bf83-5829b83c57cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bd56f37d-5561-40f9-bd09-1363786eab67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/493e5b80-9f5e-4e2a-9963-452d270891f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/49300dbc-f609-4c80-be6c-808222542479.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4924d32f-a002-4fe6-bcab-ec2656ac6950.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96ec3ac3-3842-40b9-8874-f0130e46064b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9a62135f-b84d-49c0-bfe6-359599842531.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f90638d9-e7a5-4c30-be55-218409c17ca0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/422a80bd-803d-4e31-9911-9bbadae3c1f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cf0f0af7-4917-45b0-91bd-aa7d9bdd68b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b465daf-f77c-4daf-b70f-2e312a1e6951.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3a9863a-cbd5-44b9-975a-5978943490aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08574be9-8e78-4b0c-a317-2dea6ab92d87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/85867e93-12ca-4fea-9d71-6e21bad54309.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/578ed111-08e1-43b3-a31a-faf6813f0c40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b9b7f127-2285-4ab3-b2c5-e5c943527494.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b22d57db-e40b-4655-8c57-7dd561d1d1d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a50278a5-b357-4c86-b4ba-fdf099178f69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/da84b82e-e8a7-4dfe-ac3a-4e28cbcc9d8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d65a2d39-8e20-4bd8-a351-6798004d4119.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a9205cbb-3258-438f-963f-6aa6ff4d4fb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1dfd8737-ff04-49c6-bd1a-808d682ddc19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0c5e65d-fdc9-4de9-b614-f77b551d9db3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2eea84a-9fd7-4c1a-8d0f-95e23c0d659b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9468afcf-0a9b-49c3-a885-57f480452282.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/50b524a5-6142-406a-a89f-98cbc3a93e1e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ccbb61af-f018-4ed5-81ff-5d5a2e85ad42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af16c699-3d7e-4733-b041-1e8dbc95f3de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6170d315-8713-4182-80de-ab6d4a6072d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0aa5abc0-7db8-44d4-b3b7-8133787e0862.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c29abad4-5e91-4d6f-9b08-97eb2b73081c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab6619ee-546c-4245-be8d-6e0eece3581a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/554f03bf-99bd-468f-9e88-a069168dacca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09714ab6-5dce-4ded-94cc-f79a47b4b171.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aba529f7-0175-4d1c-b3df-601c95cec965.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3122bdf-a576-469b-8fc9-916fb4e8d1b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2a5babf-0f62-4d68-9d96-7e10842a524d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06bc1519-c307-4a98-b00b-8329f2ddf615.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71813eab-6524-4c28-a978-b518a631585c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1617d8a8-6d1d-45a8-90d6-83dec3e5c088.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/88070db5-6752-437e-ad22-3f0f2451180a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/83f0d9e7-520b-41ee-a7c0-f93713784281.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e88bffa5-8953-4994-942f-4fa483baf2c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e319ed0d-cd63-4bd0-828e-9acca7997565.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/511bcf49-b973-4fb6-8e99-7cb8fc7ed0a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d5364bc1-bc2a-4bd0-a1bd-0cfb5a369ccc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c601b6c1-5fee-4980-8dd9-69c4fa054aeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c95af78-22b9-4425-adde-59c96a2417db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7e75f246-0119-475a-ad25-d83162e6e389.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f91cc1bd-468c-4c3e-9d92-76c422a756ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0faed22-33fd-44c0-aeaa-de2a99b46d4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4150d141-c98e-4cc1-9a13-1d417e94fffd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63934dc0-dad5-4611-9e2e-39ff3ba51e37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6df651b2-6d01-4155-a1bf-4808810c586e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be653a8a-5978-48b3-9101-91e35a15e6d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c86ebcd7-2b45-4c77-a401-0a27e55a4528.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d0741000-c3ec-4c40-962b-a1997aa25568.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4ae71afd-6dd2-436b-a14c-b7484e3afbfe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/999e9144-e7f0-4898-903f-dd0d20296c73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6efce5c3-d57f-481e-a23c-9f1e27d31a3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/54d69a5e-7f51-46fc-b141-0fd7e7086fae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/33d0cdc3-7f8b-4d34-a81a-297f340136a4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e5ad77d1-5306-4449-b676-e8210a26c71e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ef379f30-33bd-41ef-86ae-bdb26b3c9977.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6fe126b4-dbbd-4a44-b09c-7a992c8767e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f47ff61f-e517-455a-9e14-2e8daf40ddc6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4c7d67e-1025-46e0-bba5-cee068b8bd6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bec77715-a15a-4725-9adc-792af4dcc1d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cd84b533-e235-4458-a278-69b67d743b83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/862e953f-a15d-439e-866c-189e9082a038.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df674457-a187-4f9e-a01c-0b073f01f2fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3e65f77-526f-4e99-97b3-58ffd914514d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee8af718-99f4-4f8f-87ff-f08dced1bb09.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f1d7f1a-0bad-4902-90c6-472dc22bafc3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e3eb60b3-a471-4939-8875-7d27d30b18b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b9bcca1-0ca9-4e93-ba0c-0a6ae1342726.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9b1db34a-a649-485c-b615-f464c145b88c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/97526ab9-3c3b-4b8a-8d81-53a7533211b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f543b03c-a1f8-4fdc-acf3-6225597ba325.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e2e1ae9a-80b4-49f2-944e-3273cffb43f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ffbc2de-2553-4f1b-a216-6884c22fbac7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b0f3bf3-fa7c-4e6d-9ef9-2d65f485021c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d763258a-72c3-455d-931d-382502e70b0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c1592aae-c80d-4794-ab28-463905558534.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/15bbe0ce-b4f7-4000-9959-e2442e522954.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a94efba3-4b22-4033-b2bf-046dc59402d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/829ac5e8-7383-4564-9e4a-4e8a5b1acbbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3fe6b56a-16de-450e-82b1-5257bbdbbfb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbe6e89b-e7bc-413e-b339-54793c6e113e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55236729-2cc9-425b-a7b7-34a1c2648ff4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66dfedde-7e6f-4ee9-8bf2-cbcefea5a5bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/654a61e7-07a9-4cb1-855f-a21ecba6fb18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7bf0f0cb-90ff-4e61-ab52-e05053689108.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/67f87ec9-821b-4159-ac5e-edd2249dad5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/108eeb60-7701-4796-86a8-1447fd8a0ff7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6357f07-1044-4fd2-89bd-00642ee23feb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f8cadc7e-6554-4967-89f3-d22e7bce757b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/42538bc0-fae0-4c1f-bdf8-075dd4797d40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/806b6a9d-cfd7-4f32-85a8-8dfc916b4fab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0a59702-8782-476a-be26-c7201f37a1d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af68dfdd-a07e-4058-b4f1-549af87ce9b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bb502e72-7003-4cf7-ab16-a087fc9fb36c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed05ddfc-2a15-4eb6-ba32-876c4a4f1f60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bee78c8a-8a21-49b3-b1d5-93c93ccf300c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb683934-8d2d-4cda-b996-55cfc8d012f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/82531180-8586-4d28-89a0-466725cd4514.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a4e7f1a6-0860-43a0-bccb-263392954ade.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a42380cd-d65c-479d-b4ea-cf04a147efc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9764a951-9a9e-41dc-96c4-13e2f6bc11b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95b0fe6a-81e4-4053-b9e2-d562fa906a83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/185a1ee8-48d4-4387-b419-f01b76256d5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/119a9ba2-0785-4321-b074-dbfcffc5197e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/474796e8-4c5f-41c7-b627-4cfd98ed0f6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0230c89-0c5a-48cd-83c7-9fdb96c00a41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39709c3d-8105-442a-bf70-22a4319b1f47.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e56685ab-7fc2-40b7-ab70-c69da0e93449.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/64ba4894-66f8-410a-b57d-32cc70d5ad21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c54770fc-d30c-46e3-b3e5-c89dde6000ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6bbdbd28-5cd5-4f79-9128-b40e9e5d1fd5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/502c2b00-1c60-44db-a1b7-a3ae9f23d968.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72675d2d-bddc-475e-9ef1-654e5814764c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9cc258d-3ac2-4f5a-a7af-5fca61e18faa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/48eb6bcf-ddda-49f3-9f80-5a7a11b5bccc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ae4e1697-0d04-4af4-8a60-a18eaa62ed78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0135d3e6-15d6-4491-a263-0bac7b7c2b47.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/35f3296d-cbf1-490d-9c25-f081392c0a21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b18f7658-00da-4668-bfe8-9a3d2b2d2c33.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e0e42cb-9351-40f9-8456-b63bf4567477.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06bca03f-83e3-4847-9e30-57c49851d50b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df59115f-e736-462f-89f6-1f0fbc0f59a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4a8c643-9800-42d9-bcd7-9a4917c3fa4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41bf80a8-621d-4efd-8559-db86626c28dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ef06067-7884-4079-80ef-24cfe392e939.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dedc62fb-20d8-4609-a5da-96bb6e27d5c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a78391ab-082e-4dd6-a672-897866dbf2fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96f60f05-7563-4933-8746-2f14e0695eeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/800969a5-1ba8-4909-94e0-66a997fc6fcb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f9e27e3-44ec-4260-8a2a-3d047f910283.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38364eb2-ec1a-4747-a2ce-64674bbeb32d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/928788e7-4a07-4a35-8fe0-934b20ceae6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2657014-120e-456e-97e5-1adcdb908b73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ea55a4ab-2ad9-4106-86af-eb646a95cd35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a304611a-7d97-428b-a09e-26c9d11d4f51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/baa5cbde-acb9-4160-a8e9-d19ab0cf8063.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a5721bbd-b1c6-4e95-b6bc-0a7fbf583b6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8bdcd25b-5fc0-4b4d-b279-96aaa3b409b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/522f994e-297f-4269-a931-71d098a083bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b2761cd1-6932-4d3b-a9dc-88f5a79a98ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a5a1d7a8-e44a-4514-b849-835c602eabc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8dc929a6-3ca7-480a-bdcb-a2668e16a5bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/80f4ae7c-9523-46ec-93ac-592415eb4748.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e5c3b5c2-7f2f-426c-bf4f-ea8862da8dc3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4741367-a732-4b34-8b4e-586346f1a702.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3ab2b142-2200-4223-801f-01f64ef23d36.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc67a408-4da8-4992-9d07-9ab8cff9917c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0cde91a5-9428-4746-8240-f34c720e24cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/408c1583-d078-45f4-9369-2fbaf03be8a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a62df77-7459-4acc-9cca-a62c2cec4b0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6542c163-7ccb-406f-8278-b27ca52ef90f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66fff5c7-b6f3-4791-8759-f953f371790e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/badb2fab-bc7a-438a-add6-752f4552efd9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c63671b-09f0-46c7-b5cc-e752079404f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/061628a9-8a6d-4e01-8f26-b7a6cca2b13d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0c5036ec-06d1-443c-ae90-779617e10cc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4399092c-0489-4ec7-97a5-fbffd3da0ea6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f54386e6-9f2e-4e3b-b6e5-d5bea5f40983.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3df3ed06-02ba-49b0-9c46-d146e71cad5d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/131cd368-4db7-4883-9408-47da2b59650a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e2df0fb-8488-4301-9e4c-8ca2457fca54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a93a988e-2812-4139-a6cf-97cbf1eda603.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4f822fa-eb0d-42bc-946c-32fea8b69f40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7caab92c-816a-4c37-a0e8-ae72e7d04b89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f43d1494-2924-4e7e-ba1f-12bbe10219ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec4126de-1712-4507-8ed1-59662058375b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2ee27b62-e1d7-4341-bf2b-9d45dc4068a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd147f16-7eeb-474f-98df-c3b0c39c163c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46cda1c8-0d55-400f-8742-d695aa0e7647.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e435782d-cda4-4960-b3c1-684611e74e60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7a03df77-0a9d-4254-9bec-0d0e9df5f791.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9fee1fbb-4c28-461b-8f2a-b208a4a5e4f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6ed46d56-93fa-4eda-be49-0b1a6c68ed75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f8b8277d-1c42-4488-b573-d230cadcb570.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/52df7157-333c-45ce-83e7-30569996433b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/90cdd0b1-e8b4-40e7-bd3c-ae5a5674db3c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ec0fcd3-8cdb-4982-b524-5974ef50b099.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9c28904a-278c-44ad-b4a9-7f5bc3ae58a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/976ef2ee-e58b-4f48-851a-1709c0f3ce4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38bfa17d-a04b-4c4e-ad07-fd8c8a730596.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77d8f15c-4686-4898-93eb-ad80ea92a803.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7d7fd5c2-f00f-4bc7-91b4-2f2d4f5cf92d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9fa14682-ad76-4df6-80a6-aa623e59ff4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/354c3756-43ed-4921-adf8-60be49a8b7e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6cc1f886-40b7-4459-9e08-32d4e5c39276.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7422013e-dd88-4a98-bbe4-b1ab9202eeca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/527e3357-7ee9-4911-b2bf-ad076813b65c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bcbcf3f5-244b-4979-9405-9cfe410b37a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ea6656c5-7926-41f5-b83a-6cb7cbdcfb85.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a7162ad-b2bc-4132-b15a-7fdc80957618.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/58119b67-26c8-4081-9c3e-0339604982cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/747b1c03-c554-41ea-9d57-7b54894985f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3fc1b246-9939-4707-b56e-b72e550b633b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9a9495a1-8e02-4cef-8783-e0463c1b0cea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/35c10804-455b-4753-aaf6-72cd9a4916eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fec89f9c-205d-44d7-99f0-9f79669f45dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/85b36d29-0d52-4fda-87ec-a11c1bed039d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78723da2-eb6f-4800-9ee7-dd2ddd41820f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e34243a4-d26c-4bee-8461-99a8502abf39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/79c37699-463f-40d0-aff9-6aa5bd6fca24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7ecac649-5084-4fda-af71-40730f0793cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b8d1d66f-97a3-4474-93d5-d7cc3c833081.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a7b5d4ff-840c-4db3-bf4a-d5c71b49f754.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b1976cfc-3bae-4bae-a968-4892e6f953ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73c536ff-9071-44d0-8b4e-1445ad87894b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2c1e0ab-281a-414c-9569-06b9408b50ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3bbe6098-7c9b-4f17-ac6b-e0c68b0e0af2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bae3200d-081c-4a6d-a999-ad1f0b09bcea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/522550aa-5585-4182-8623-7c35a9b03d35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b5f01025-fe74-4d81-b38f-44f6e64e7741.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/83027ad0-2098-4d3c-a8c3-8f89a8addc39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7fb60b5-0a61-4951-996f-c1585c2b3aee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0ecc15e9-fe6a-47ff-a622-43e23c8a73ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9546c2fc-7033-4736-bd7a-fe3a2a2f5bbd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ffd670a5-b6dc-4f54-928a-69b7a04662eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06f1d0a2-d8c5-4229-9944-59da85c96b81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbe2cae7-00e2-4255-bc97-84a9a5059ec5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/847ae038-9936-45f2-b4e2-a5f2ae396b5d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3460d66e-b863-4d11-8d55-14b559ec1588.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96bbd7f9-90cb-48fb-8338-0051807aeb1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7f41761-1491-46b3-b718-a09637f90682.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72dfb20b-bace-4888-85b5-22646ca74a28.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b033062-62d0-4506-8dda-d3f5df1ee117.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5e36040b-0804-4c66-a879-32afdacf18ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3e9e02d2-673c-4a8d-bdfe-35515693ce1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/67c4416b-89e7-40fd-a1a9-3155979fcf6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af15d432-68fc-4a2f-b456-a0366722799f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ea5c9883-171e-48ab-901c-e9b7b507afe3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1627a4b4-a485-43a4-9b9b-1a9a4240c158.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fc4d2474-5814-4244-a1b7-7ab7328d9071.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/585b4e26-50b6-4572-8b7a-01644dab9fb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/03774732-81ca-4da0-a35c-ec222c14a4c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/661d6964-432d-4663-a070-70b24702dbb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/938d2c83-61c9-49a7-b031-807ea7457836.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d9063f77-6d67-4345-b853-a60453b0855e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e02e0031-7d4a-4f89-baf9-db0f07952ca8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18630633-df6f-4b2c-b3df-23704d84f5be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba5fd613-dca4-4bef-ae08-f1da4ffb13a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dc825e82-69cb-49a7-b399-62f79385bb90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a422ca04-b11f-4995-a7b7-a9f4c0988f30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d7c27a89-a0f7-4c00-aedf-469a6ae9cf59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73bf15b5-58dd-4aa2-974f-2749e0a5fd92.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/797b308e-38c2-401f-89f4-0a915815724a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6eb4be7c-1c6e-43fd-99b5-00e3b22c6df6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cefe76c1-d7c8-4f95-830e-6491791f208e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a75649b5-f044-4b85-86e7-91e6c6051826.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/76639f5a-541f-4053-b71e-658298f7a8ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8fee70d3-6e44-4851-b697-2935cff16177.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9b43860f-c492-4da7-a930-1d4fbc9bc58b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c8f377b-05a9-49e2-89eb-fa03c711acb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/27bdb2cc-9665-40ea-a6b4-248a1112dbe8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e666d579-2ff0-4ce0-a5a2-903919fa5668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d03c4adb-5043-49ce-bd82-ee3b45470583.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a1109a32-2c0d-49bc-a8fa-4efc7e46c279.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b17ebcce-1181-4571-a1c8-f5089cfc6fb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7bcccda8-97a9-4cd7-bec4-d10f186b5698.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec439e48-57cf-4a91-bf3a-9b6d4fd067d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b9081e46-c32d-4a93-9eeb-2eb9e195d0c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a7feaee-a0fb-4db7-814d-ebc3a9f98824.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f12cf3f7-3b60-4870-adce-ef2de600ea6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4281b0c0-eab8-428f-893f-06a2291ace68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b78f2713-e211-408e-a810-e0568fc0f0a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63286766-81ba-45ef-bfda-4fbd32fe90ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ea32facd-af87-403b-a56b-2a0746ae04ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d5be0945-b546-4640-b0a0-d2dd209122e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/700020e7-8847-4635-8787-b2c374b2e17a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2b08e0b6-d944-4466-b582-a62ce4a8a852.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af126ce1-a5d6-43bb-b5d1-5fef9bcbeda2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b63f4c12-5731-41e2-8d89-2ae0c4daba41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2fe6d6d-3cf0-4fdd-b292-9d4b8553d4b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8edaa2ae-86d0-41f2-868e-cd8f2d67e2cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d4d338e2-2627-4587-9fa7-41a13fbb3c67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af634bb4-a3f6-403d-b4df-d19c0ec67ed0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/86066dd3-2255-4f12-8fb8-e3aab02ba8b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c9436c8-eda2-4db2-bed6-a36c24efac94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b215a2cf-ddf6-4032-99a0-1c2b10ef2f9e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/971483f1-8513-4e3e-b45c-8f54b691b2f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/87997557-f548-49b5-b779-ef299507bc6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be8c2b0a-19eb-4e55-9efc-9171358333e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a44df0ff-7eab-4bfd-b841-5d26e9088933.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f6a05a24-1cd8-4eb1-ad7c-5d5fd5d885be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e771c60e-1a7a-411e-8216-4bd92b1f0e23.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71f7c138-25f7-4d7b-b2ca-47c48a9b0380.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b4dc3cd-331b-4318-8bee-e1506fbf9513.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09fab84b-19f3-42e1-9c90-69a49b7b37d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/25957b99-212d-48d2-aef4-ca816f211f0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee52c757-3e8e-4e65-9818-52ad4c00622a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/915023f7-c83f-4819-9982-7d5fd43296e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1e8fbc6f-08f6-4801-b437-69d9e5bde269.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9d315378-b59f-4999-a993-cc4443925be6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9af14d00-2e50-477a-8d0e-2e2c59f89188.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f30e0c38-d83e-4ce4-bfcd-c72211d1fd56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/562e09a6-7ef6-43f9-b58d-e6bc8e838b3c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/43e034fb-4f9c-4c7e-ae46-abfee29fbc22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b9dced6-3164-4811-bf8c-242400da9ac4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74504e90-1547-40f1-9059-ade3f2576278.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4fabf46a-ceec-421c-bb64-8527b44aa576.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/715bae63-44c0-423d-ab97-c6b58bd3287e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6da20c13-b4ce-4009-af02-191262a92791.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8d56bf18-c3e3-4872-9fc0-a3db283b0cee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de1939ee-0d5c-4eb9-a39e-e798e314b8c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5852c84a-e471-4a41-89d3-48566a9ec475.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bef738ff-ef1f-41ce-baa7-e40009c8deab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3811df6f-1111-4ee5-9565-f0fc197981f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b1f3050c-2d03-4b69-984b-ef913787d774.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7ebe2430-3932-4c0e-882c-7e72b290ba76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f4bad3fc-bc93-4634-bed9-a9977f6cec56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d43a6e87-b64a-434d-9e4b-27f55779ad86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b494528-53d2-42f5-b9d9-8965b551db52.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2cdcdf0a-daf7-4ec5-9c8f-1019432ab7da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f93e4397-1773-4858-8e5d-a449c11a36db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7934f518-dbaa-4201-922b-1bc93a245e84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f135ee9-60e0-4dc0-86e7-dd1782150a80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a046779e-b8fd-43c2-8298-c7f0797c20a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f164c961-b6bd-4888-9b62-96df4a4361d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4283e25e-331f-4154-8e81-971631788c4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1dfee324-e504-49da-bfb8-5f3e5c2eda88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a9107b3-b846-48bd-878c-fb547c8bba7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c4945ed-5abe-46b4-ad72-8377685fa14e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f39dd8fb-7938-40a0-b483-a3db0c66bb2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fc4e1dd1-0479-4617-8afa-af9d4a66eabf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2afeefd-7ea5-49b5-a11c-080edf62aa3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7b557b1-623e-4466-a60b-ada96f7ba8ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b683e1c-daf2-4d2d-a3b2-48fbfba80601.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/26f81844-b912-4911-96d0-f97d46286efc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/373e90d6-1d02-4bc4-9769-7763b3b52c4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5406a077-c57b-4012-b1c8-bc848d1ada0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ae625e8a-042f-451c-914a-1184aebaa97e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/33e18761-b2d9-43d1-a9f4-b16a99a2664e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b73f95fe-08f0-4357-b939-16fd0cc2b8d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4a7b649-59eb-4d88-8983-c154b5ea769d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b0e1f3c-e7a6-478d-8a9c-461b76ee3953.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4c52f9c5-6ce0-4e28-ae5d-ddb37f374f31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fb7fb7fe-5887-4ae3-93c8-33615b96d11c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/13aa11f7-b15f-47d4-94c1-4ded9bc8ab16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eae36cd8-b173-4eee-b989-db0f42e1a850.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fde9b6e5-382b-4fec-8406-70a279a4b696.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eae4b4ba-6199-4393-99d3-78ac3e10beea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d0fa7872-9743-4a81-b75e-4d8973e064b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73ce684f-bb84-4803-9aee-665ba64f1891.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a19bdf2-b88b-4414-97bd-b24d79cdd53d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f296771-0964-4682-85e1-7b7c39268e05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0297e501-88b5-4ec0-a2fd-50a7c70b42eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06c3e09b-341b-4fb9-9e28-bfd9cf298c6d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84a8a5ea-cb99-4376-8d50-d90cff5904ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eb91f1aa-7549-4d6e-be14-5d6ae0eb85cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5c6d4ba-fc95-46b6-866f-3a482d7f0a21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8917b2df-a22a-4da0-935c-397926ad5a1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b33610c9-a152-47f8-8ee5-4f81dce62938.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d48f4d3-7a90-4ead-8634-b2d394575284.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/548ee990-ae0c-4307-87f3-f92912c7951c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/815db394-98bf-4a2d-957a-968e2ef365ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/626adddd-9800-4304-b1f6-1444971946af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c74fe0e5-cb24-45ab-9ffb-35f9b7e0d5e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec903e13-0397-46d8-8b5b-194631e31bf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/35a8878c-2ffb-4774-98ab-5915360878d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3f13b743-77e0-46a8-8f1a-12caa6007b16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd530604-c307-405e-b1ab-6419fe00ea85.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/28c94c54-4279-431a-b329-c69104ee0d38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8e26fa7c-1218-4795-b7ff-bc9db7f74715.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/197146c0-dfe6-4938-ab89-5fbef34150fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9089d4a8-bb7a-4090-b7fc-f8954bd3318b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41514a7f-f3ce-473e-a15d-cfd41b475aaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/35f1e0f2-a8f1-4d65-b4f0-bf9686f90c40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d6f4e36-f9d7-40e1-b1c9-004d217b8019.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84232adc-072c-4fe6-b120-c28e25fe696f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7935568-7703-4ffe-8b55-b656cc5bb7bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46e6b4be-e2aa-4b5a-8917-9c0846ac0430.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4936f212-84a2-41b0-8781-8652763f3cec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e065606f-3368-47ff-b4d1-ef783e97813f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/12f9962e-5c0a-4445-90a3-3b9ae1168cb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c674b10-76e4-457c-a17f-2407230b93a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4961c86d-3803-44bf-8e27-0cc9c3375b00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8cd0b312-ea6b-43c6-b637-ccba125ee5cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb3b72b0-408d-45ab-9985-3d40a4a12626.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c4a2f14a-82dc-49fc-aa03-037bf6b99c6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b55aeff-b31c-479e-8035-c9a64144083e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3a62977-0a9a-4624-b6c2-22c582ffdcd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95b8bfc2-07a5-4003-8b64-f62d9f5d7bdc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3f6548a2-d1b7-4389-b306-b080c9fdb216.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d0f3dd8b-a619-407e-95ff-b6bb1a0581bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b7bd8bb-27f4-4416-9c4b-d68c4065aa54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dfd43eeb-47e7-4c48-8418-4ec3c75cd13a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a93bed75-231d-47cc-a21e-9a70c0d072b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a6a506f-fe68-41e0-a769-36167b84f8d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/294ffc42-a92a-40d6-bcda-96bb3c9b8def.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d7eede04-3a00-4b84-99fe-38b85a251f53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ebe3d34d-61bd-45c6-989d-f96b76fb159c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/324f9ed1-09e0-483e-9bdd-d139e77acb85.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a770c776-65f4-4630-8b51-0a458a96780f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7c1b6a02-4c30-4299-ad9f-4bf16f94af71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/983a434f-fa14-4472-b62f-4f81eac312c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cf972338-3717-40a6-8222-b65cbd8e2ef9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e46a2dc2-a741-4ab5-afb0-fabdbffe1ec4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e3dc00b7-5675-4ebf-88ac-42a60e2ed893.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8a546535-613f-49b1-897c-a0933c53cb84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a09ca982-3465-4346-a57c-16d0b9e150fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f1509076-069b-449d-b659-4ae16300db31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b535b006-e90e-4284-9930-6713cba9a8a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/49290f12-f460-4672-b38e-f059d2ebab14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b8d0cc0-fa3c-4b87-97f8-bef191a62ad0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6d5d18aa-9418-42fc-b2bf-80bb4dec0291.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/883e12fd-4837-41dc-9298-86e3c6a5cc5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/875d345b-02d4-4072-8aba-3f126efe070c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a004ce1a-4907-4d76-b520-0f31e1eb00d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/574e8310-2477-4a25-992a-6f9511afd61b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f9892a3-ab75-4bed-82ad-b1294a8d0ab4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ae29aee0-ee78-4cb5-a5c9-4b43913543cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84a14ff5-f4fe-4ee4-9873-ccb84b76d5a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3011a504-67f0-4bda-b774-46cb7c38b839.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b6ab1a11-6558-4f76-bed2-3b169f820be9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0e4d764-537c-4dcb-a976-d15c6abd87ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/427e3b32-dda5-43a4-834a-19979f611b83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4dc4242-1268-40b7-9446-6c2acd9e9144.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98833b28-3925-4098-bf44-c81a9e687838.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/322683f0-157f-4528-9180-4cd47b98a307.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d2022d4e-4224-4aac-ac5e-01ab4bd3792b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8aa2f1cd-a9f5-4f10-8dd7-1d40b2fbaf50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a9666c7a-9d69-41b9-923e-a7bccf610b50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4441dd1-485d-48e7-ad2f-a5e58f250cf2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/64739b6b-2ef7-459e-8604-0578392094bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5bfbf397-39a6-44a6-8294-b0cc1c157ec5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46b05a16-18c0-4525-a332-1c2c23abc98e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e108fd0-3d57-4c27-a7ab-16d9de2b4c70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c76ee8f0-c26c-4538-883d-cd7994a52779.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba353385-091c-4c4a-8048-eca0388c7a43.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c70eeb8-e44a-437c-b958-fd6734728e49.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d21ed05e-ee77-41f3-a363-ee66ae2f35da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6672fc85-4989-4327-830e-be03415373ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b619e5ac-ed95-4a4a-990b-f67bdfa40b3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7eb5ef8b-b2c9-4f19-a9d6-42354bdbcef3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/083e7d20-cee0-482e-acb5-029868b78fb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5e461bd3-5247-4b18-a099-ab0a2ba6b437.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5b42824b-8785-42be-a8d7-2b12f0de0d14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b046125-28d7-4b79-8db4-8b0dc38e53a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f40e828-88a4-4f07-8286-b5446f4d4790.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5a4c5d2-2266-49df-99fa-aff2eec26a53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c1cf3255-d734-4980-bfe0-967902ad7ed9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6b7debe4-f52b-428f-8e6c-9df32423387f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1444c58d-80d7-4262-9cc6-9a7af55f43b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e64e45d5-a659-432f-93e5-a9b18659bdd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3e2fa4f1-9513-41c6-b520-43154569f8cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9cdd71e2-ca33-4fe6-90f3-153f8f76e5dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/575aa76e-ea41-4db2-809f-265d8c5d70c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e71be066-42df-4699-a67f-e32ba9087640.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6bf5b78a-635b-48f2-b767-460711927d7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/44476603-8ea4-4a46-83a5-a4bc90649282.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab2981ac-f605-4a8e-a68d-f0e80e424797.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0b22e01-2288-41c4-9ba7-f3abcf2941eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41541e45-99ab-4c0a-a391-53981f49a95e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bedf2835-76ba-4bd4-8fef-a7c767b7743b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7a5cdc7a-bcde-42bb-b2d9-02b9b0c740c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5a7cc989-874a-45e2-bdb3-9967f331babd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d6724bee-d28e-4b34-8813-52a86955fa72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/57ec4b6c-3b10-4f00-8644-26f808e0465c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd4af787-7516-406e-8f06-671e28d791cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d94616df-2f92-4612-b86b-ba5b18d423ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/41bf38ed-29d0-4ac1-8e2f-a1a1d6468856.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/30ac4f03-d153-4c6a-a13b-e47855fcb2fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee7e4b0e-72a1-47f9-a085-ca3e9b358d66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/43e81c37-160e-40ef-a5fb-29c425e2f46c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/916de1f3-688e-4d39-bd41-db3f653e90b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2f00821-a074-451d-8e0f-32a6a400d69b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a49c891b-2ffa-40ce-b2a9-2aa9fcdf376b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3bd974d-ec10-45e4-a9b0-0c72cb969f7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e1137058-8fbb-4781-8d17-234719c58d10.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66270ceb-178f-4649-9193-d09b07ec5670.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff7e4f5e-9895-43c6-bb13-8a482c5a0c27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f7e14331-ae8f-4367-8ca3-93699785e0e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a880b35d-0e5b-4790-8805-ed523f70e110.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6c6fcb3-1fff-46c0-ab82-7976005351a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/58dd0f68-9373-4b1d-8b25-337fdbea5468.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f1e96436-85c2-4179-b7e9-3f3091e29d76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be0d1645-263c-4dce-99e9-77f31d6ded61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/edfa02f9-6832-4f91-8b9c-018d3536332c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fa3179b8-cc14-411f-89bb-611ac377f574.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2a1f4a9f-7b41-4f50-bce3-abd130a42a69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d6b3a64-bfb8-43cd-be1f-2645c9df4ee2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/33c66fa9-6a08-4d0d-b309-88ce91a217c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ef496bd2-6b5f-4121-8cf0-6d27050978a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bf27db61-1c2e-4710-9f25-31eacb526f5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6c56a5f0-decc-4ab5-a119-8bc50e828a7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba13e6de-a5d4-454d-8b5d-de3d30008294.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/319381e2-67f9-4fb1-85fc-a8999515f25b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1d7ab7b7-3479-4487-b61b-936d64b8393b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38942b51-6428-47bc-86e5-f974ebdb57a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77563978-96a9-4687-838e-328917066492.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d0ab662d-827a-456d-ae90-f1aa5f7e3650.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a85de598-dc47-445e-982b-e0db1c3d18db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8ad89577-a350-4a55-93cd-b68318233923.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/850a00db-8884-45d3-b3cf-1ba8635b9294.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0b4f8335-8b99-468e-8556-4190522e8f3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbf90d22-07ba-40c0-b043-55ab73851ba3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eec8811b-80d2-481e-82e6-9c931f73ab6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ef605eca-af37-4409-9043-6ff34392fee5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f39658c-3628-488f-bf5b-e72cd13c6ed3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77762e93-073c-405f-bca5-0f1fd339bf4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b8a633b3-b2fa-4e17-be54-faf0aba4c903.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5912358f-6041-498b-85ec-abbc30e58f65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cf5ba79f-bd76-484d-9a1a-ec336aeb1c72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aa354250-71b0-4d06-b0c6-8d00bccf45d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4a8d9d7e-0723-4267-af11-5efdc877aead.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b1a8c34d-b577-45d2-8f8e-9190e2cefb4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eaaee470-cf44-4d79-a5f5-4e8b642fc999.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbe3bbb2-54ca-435d-ad34-17c41f9a05c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2f801269-70c2-4987-a479-e25b91767ee1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eea3a106-1e1a-4f1d-85c3-f1575fcd13b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/655d7db2-1a98-4c36-a64e-a56318454863.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d3996f51-ab5a-40dc-8faf-49f93eadd0f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2d971bd-e0ba-4a74-9c56-c63b4397e50d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b6f9000-3a4f-4d1d-a47c-df528f9b6be1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/437a35ad-8f70-4ba6-86da-de2a6805a2f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e905c9eb-f673-4c09-ab97-cffccdc1fe2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f22a216f-9194-49be-ae18-1c2b09b86de9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/87afe4d3-bd15-49ae-bc4b-26695e8162cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/391e3cbd-2da7-4021-81e2-5ed9297fce3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38e68dfa-d76e-4d4a-9fa8-4a9d86f1a380.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b6a7c3f-6628-43e9-a4b9-227a7d6b7ef8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/daf236c6-0bec-4590-b746-630cd8b7ff66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6770c34-1c23-4901-aa17-ed26930c9402.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0cc66f3f-6bfb-4f99-bbc6-ed28bf3f740c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72958adc-e186-4905-9017-d941681a250e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bee1ab01-cbef-4d86-96aa-41c77bffa6b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/db18f6b6-dd94-411b-ae1e-553f81ad77ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4ac05784-cc3a-4dc5-95fa-9367d7d898a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a33882f0-bccb-4c22-8104-deae4a3b3b4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6f6eea6d-aeca-48ad-a730-ba52981111cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56419e8d-5982-460c-9e71-546609e6ebd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff36df91-52bc-4fa6-a3df-1da3d3f6191a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56b0ffc8-80e7-4927-9bec-5e843cb48358.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd2d7639-394f-405a-8e0a-6d655823012c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb1bb35a-ddd4-4119-b866-6bc2642735e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d88c71a0-73f2-4fdc-b870-38a3bf4c2a2d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b5a22c51-47f2-4091-af34-ea9b59b298fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/65fa42f0-ffe5-48c3-bc52-20e33b346f1b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f52d03b4-5110-4ae3-aff6-b3993581512b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3320445-78cd-4650-9126-4a189a93b33a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74f427aa-a1bd-4eed-86de-2755158efcd9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b55ffbb0-1345-41e9-91be-e9803c438b0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aeaf6ffd-ff7e-48cc-b31f-175a5e79b415.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/424a64aa-28bb-4f8d-b6f3-f600603300b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/639a7b70-1b46-42c1-bc8d-05b1861292ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34d37f0b-6aeb-4af0-b0cf-f4516a3035af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/44532bc2-3b6b-4d5a-98a5-b250f5c98268.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0f36ca4-84c4-4f1e-8f3a-5ea439cee63e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e82e63bb-bbc4-4f87-a3cf-23442355665c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/40e09e66-bed3-4fd7-9c73-683784dcf71c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ccfd476e-b3b6-4fda-83a4-ca66790a1334.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aa4a3a96-38d8-4b4a-82ba-670d17a6bb4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b82c9155-f643-4853-abe6-ea3420ab1d02.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab09b1a0-4585-4917-9214-bc688caba9fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3e090052-b2cd-459a-bde0-837321f83cf2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3dc305bc-bb28-412d-9932-71f3f49d8905.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/531f1e64-d6d8-4905-85d5-f6f10834d098.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fe5f1cb5-2742-482c-8197-bb7cf0b2952e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/99a66d6d-412a-4303-b438-e065cc76ce5f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56fa101d-83d1-4e8b-8e16-dcb0cf350b2d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3188960a-9044-4c39-b74d-71b289d857d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e74d273-9bdb-4fb0-8a0c-edfda365df2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1a2cef8e-99cb-43cc-b9b5-65fe5104037f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9eeb04be-4a5f-42d5-b927-eba101889a58.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/07444c7a-580b-4494-a883-3b33361a24ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f41d711-55ff-44a5-8857-b02eb300174b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6777b153-5f07-4776-9aa8-40eafdbba610.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95312722-a12d-4f3e-9230-91913b36e4a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72c7e133-2cc9-497d-a68e-326c71484fb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0e08846c-ab58-48d1-9919-f5ea1f47d032.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a663c486-b367-462d-bd33-ba415987c4b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee1afccd-73db-442f-8465-f85dee2db2fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e11240cb-63b5-4f18-96e2-8402391f04a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ddc083d5-b401-4de9-afaf-d80d6b8c668c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55e46a4b-c9ac-4e93-b502-42b0ba128ea1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ce57ef6-b4b0-4ac7-a5d6-06c1c0b32c3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ddcd7ff7-bd2f-4b84-93e8-4d389f34e2f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b6224e20-43d0-48ff-b33e-34e18ef36d64.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc95cf8e-8f29-42bf-9980-6bf30fc5f9b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b7d43469-6312-4261-961d-e2014d6e7dd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8c433d4e-8100-4009-9145-1ed9e801f1fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd63324d-d1bd-4fcb-bedf-f080f6c62a57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/da1f3a87-8ffc-434d-8a00-a7faf37d1a98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ac8d3607-3112-4316-8354-8b76e86dc18b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4a2fec02-fe01-42cc-a1fb-a1588b147f60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/691f01b2-60b0-49ad-847a-f2dcdffa22ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a9196af-16e0-4a6a-95e4-426614770eb2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4a25524-a786-4297-9bf5-40a13a357e4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84f26613-70e0-4161-8804-65835801f185.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bbe15fbc-e79c-4206-a901-5b23888f8a8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/92935205-c7d4-4cee-a3ac-124507c45ef3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e740c681-6c4c-45d1-a8f1-5e33a0ed4140.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/705e295a-8832-4e26-bc45-0a35a14d1cd8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f3f5192-ef06-4085-bfbe-17ec62087fd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18287dd8-6e84-424c-914d-c549680d1b9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7a06c63-28a7-4de7-b52d-98cbce47b1b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/960e8747-cfc9-49d5-8bb5-47513f50be0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/43f84778-782f-4535-82e6-3130bd716ad5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0fe91e4e-52d4-4615-b92d-7790d1fdef41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ebf2bdff-9e1a-4365-9010-738d58b62944.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09d2a8d3-3ef9-4e91-8abe-d1c127747905.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0b53b66-f9dc-42fc-a1aa-d74007fdaa4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5bae90dc-76ca-4096-b3f1-f50ab396bfe9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4efd5f30-6371-422e-9fdb-220a084ffb7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/980c366b-becd-4652-8934-682a2961081f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/50aca2cc-0998-45fe-902b-88dd222539a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d17ca8da-8023-49d5-9670-141910334809.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f88b00fa-454b-4965-8279-bad3674a9909.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e42a9af-874e-403e-9af2-8f1c21fdf4c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06216b5c-c03f-4562-bfec-bec5235943d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/12b4c5bc-48cb-4010-9b2e-eeb8b0d5cc8e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6f02e9d9-a4da-42ad-af9a-85448827d3b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fe0e168c-b5cf-476b-b8f8-4de4c8707db5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7a1e9b2-8a8c-40c9-9d34-d45a31904284.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/53e37b9f-3231-44e8-8bf1-56eaaa6e49c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5dbb4c6d-0f62-48c7-ac40-4eca9562a74d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0fd45a3-14f6-4462-8dd4-1d643bb517d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/02336c62-4e72-4818-8198-c327096a71e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/efd3dbd7-d339-43b9-93e4-2274ab8e7936.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bd110c92-47f7-418b-9cfb-10f645290ca4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbc33adf-8a86-4c11-9c8c-ad657ce3afff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/737c7eab-7194-4130-a010-954ea6e321e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dbd3e871-a1b7-499d-a303-705ff2003eaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/40e894fe-57f0-48b9-8d7e-0898685827bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77c828fb-8cf7-4953-a964-6a566f3d07ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e3e58d0d-54af-477a-abf2-8c1d11137114.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/576429a6-dd25-472b-ad28-8a8e09f32bb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/159ca18a-4b95-45f5-b489-acde49608baa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6174fe6b-d274-45a9-b720-a79c824beccd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/052e09c0-6747-4f72-8e71-96fcc489043a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1483c479-9496-47e1-bfd2-bda652f83fc9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed5ddfad-977d-4b5c-9584-ba676b156f2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cee8b61a-d0aa-42f7-8f90-0be7aac05636.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3f8e8216-fd48-4f9e-909a-bd0cd15b752b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17f64400-da64-4633-96a1-1287f35a5022.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f130cae-9c08-4321-9678-349d21d14329.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3aed4a87-9c2e-4c32-a082-25b918c4f76d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/51db7c4f-198d-4ed0-9cb1-d267564c491a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56a7f91d-3ccd-4be6-88a7-659ebb9f3829.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b481fe48-80c2-4a74-9c1a-ad907dd1f7b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/416142c6-f196-433a-b6d7-7752a8d2d8da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c8826526-a050-43c3-bcd1-02667c3c0f8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6c1c7f04-a78e-40f5-836c-4f41d4b300b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a6a2cfa8-b17d-412a-b43c-6feac3befd61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dbc8473e-fc37-4b23-9051-c1a0a1baf5a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/359ce100-a41f-40e2-ba95-c91b83725a35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39a5e461-791e-45f0-a4a9-2f4d06c8eca8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bade0f31-c385-4f3f-b16f-bdcc83b2c687.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8f2cdbe6-7e29-4c40-ba7f-54d3f64d10e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0830e21-f8b5-4214-af2f-4d5651ec58b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95ef1bd3-c207-4d70-88fd-c37c275086bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3748c51e-06c7-488e-97be-dac0614f5c17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/177648ba-1d97-4195-bd33-f4d11e826aa8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9a970136-ec7d-430f-9a70-c873fe64eddb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a03313d9-fc3b-47a5-9d59-e74514593dab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ad51db72-7811-42eb-9a39-434be7ae601c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ed4e9923-0544-4016-8e00-4d23763c5556.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/15e8d510-5e1a-43f9-9d1a-16a1bd6728ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ce1eea09-bfb1-493e-9ba5-5502d584a0f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/da766811-e6a3-445e-bc24-d72ed05242e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a601e99-c913-4b8a-a909-f15944dc3ee7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8a89b0f1-b98e-488e-acd1-1b6d7d2502bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b3ad8a6-b188-4455-817e-8c9fb7429ec5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c764098c-5301-41c4-a7e6-bc66b8ff7ef7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36f83a08-c38f-4c67-9cd1-e7c1523fb9be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5cc1733-1ccf-4de4-a314-e7e39a7c2941.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f73a6f8a-40b3-4079-85ab-a2e155903ee4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/34591201-fa13-4dfc-809f-bb3cb8ca7665.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/32c14ef1-f97c-404f-aa9c-7c1bae0c02b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/58358318-9163-40fd-a05c-e883e0e7d815.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d04906b9-f53f-4c77-8e58-433fb76feb61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fb8167ad-76f8-4f75-a422-90304c82f9d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91d9f69e-f6da-4f70-b539-7a3133714594.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee2997f6-3fa5-468d-b710-5adacaa75753.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/632032ce-a598-4a93-a2be-9222a44155db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71bc1722-acfb-4c2d-a774-eded24a34f9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f36bbc73-8624-4599-82b2-4c3f882e117e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6438d645-6fdb-4fda-8598-a4c1902a33c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4edd32a5-7960-41f5-a68a-df4744f3fe21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/826c317e-01af-4cc5-a367-07974ed1df69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec494de2-73b0-4ec6-9038-217175b06392.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d35637e6-7aac-4489-96ff-24396ff9a70f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74f8f310-cc0c-41ff-871d-8daadb81bbcd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/da1cc70d-6be6-40ef-9617-50baee57e3a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff9d37d1-3660-4187-8f57-d31f9c91a3fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e985a3d8-3e61-4589-9b91-d53dad5d3ee1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1f20a7b4-fc0d-49fa-8cc0-ecd516509372.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6afbb201-ccbb-445f-b3f1-18bc1665f279.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ada57dae-a677-4d5e-a9b5-1143893e9154.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d48e61b7-594f-442d-9e0c-a435f5e811f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0428e86e-a279-4bdf-9b73-c9eead06a4e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/af2b931c-2fc3-42c1-9093-52256df224ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18343850-b51a-4ce1-8d09-9b3bc4910a9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/19134807-be51-4b28-818c-17951de93615.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71b0ce4b-d1dc-4e08-9e22-be77adec71c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9d1ea51d-29fc-4aa1-a4b0-fa1f1c979d0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4eb0ed96-3ad3-4608-8a3f-2012fe203df6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a7fad7f7-9d4f-4595-9097-7e7b28195679.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b630e58a-f0af-4a41-8996-c3c810de841a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee3cfbb1-1dd2-463a-886f-3033dccbc645.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60a47ebe-6e62-4691-85cc-d45a27aaacc9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/786b24ef-aeb1-42a6-a606-bae80423f811.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/45257ef3-5af3-4969-b0e8-a73e716f240e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46bc642f-c3ee-49e0-8004-767970218efe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ab218fd-5dcb-402a-9613-2647db580e00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60df4912-d7bb-428b-a792-6e634a7b323d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/85f6d0dd-980c-45df-a971-b3a8ac3213bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/92ac437f-fd66-41e9-972e-c62cca43f18a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/01d72346-4459-4eaa-8a19-d3c92121d17f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/53d0a5ae-5e10-4812-b896-34c3dd12564e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/571c68fb-a4ff-4ec7-abba-6911a6c05fb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b415c445-79c8-485e-9612-cc12b2772bfc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e5571f8-ebf5-41f3-88e3-2e78a6dd5f0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d3564be6-7c67-49ab-8267-a3b2e02adfe2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/47cb63e4-4f88-40b7-b4d8-725fdc053c28.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7fd74dfd-e31c-4139-94a4-04d4f51a7098.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74060000-8546-4dff-b85b-7de6eeeb04a4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d77d491-eca2-4ec0-8558-58fe06d03d5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39f08b1e-46f0-4463-ab20-f72aac165d83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fe9ba80f-ccb3-4de8-9f6b-610f814067d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ac22490c-d4c6-4510-9bc3-bdaf184ab071.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3eca37d-a537-49d8-9711-94d86157ac8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e078fb2c-acf6-43bf-8cd0-540bbb460947.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c573cb3e-54e6-4ff0-bda4-1fd7621ee0cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a92e0447-54fd-4ca0-896d-7b649f57297a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1888810b-4d10-423a-adf6-5fd52aa9961a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/da94e078-7185-4931-8373-2838f05066ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6d44602a-e27d-4454-95fc-e1043d30a97d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/64c64cdd-19c4-43a8-8220-677e133d7864.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3839ce1a-14c9-40db-9f31-53c84760f1aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/70ea8245-fcd1-4ebc-a330-9d92c6f74a5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e0d205ec-9cff-4141-b593-eec5c0b5da21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09653ae4-ae24-4839-a56e-7270d6e51eb7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d0f6cce-9894-4869-a332-4dd957c458fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/987d7028-3873-4b8c-aa45-d3f52f3501ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4e0296ae-1440-4c05-957e-3177134ee108.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ef5e20e2-5a3c-4201-8541-7fa1f0d6b65c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e34a437c-a4b6-4091-8ad8-1e11b8088c5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/628a4414-2476-406c-891e-94efe24e4033.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec3cec4f-b530-4363-9609-458fb003fd7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46589ee8-5fe8-4b85-91bb-b5e99bdc8cc3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/238fdbc6-8081-4e89-a541-6c5a4f5aa232.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df960a65-b2d6-4d7c-9bf9-cb0fe56d526e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b541091c-8437-407d-be64-2440a01b33e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e9e5c6f-6176-4dc2-965c-628d874015b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cab072ec-3242-434f-bb89-cf2afbd65674.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f5d8bb32-a42d-4ac6-9044-8866abea58d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/966094de-7960-4b46-9dfc-f5fd10697098.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38499212-089b-4dd1-acb7-c92d9bf977a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3aa0d0a3-61f9-461d-b160-f2f15f5b3394.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18e40369-e039-45bb-a1cd-942e1f5b467c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/587303af-3f6e-4e07-8c5b-6d800e9cce52.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/51f43763-2c98-4809-853e-adf2eb9e80ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91b8532d-9a47-4ed1-841b-ea4091f1db8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56789bdb-728f-4e47-95ec-e008f08e0b41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/89745fda-4d0b-47dc-9b08-b51ec914e659.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66a08a4f-0ef1-42c1-909c-b239cf5d2a5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/597b4e4c-88b0-407b-84c9-f752cd23d447.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4a07a70b-2093-42a7-acd6-a6efe383fbc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/73827f0b-0bc9-47eb-8249-14621ad77f5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6498bca-1e0d-43af-93ef-c504eee3b64a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e9f1dfe-7412-4fef-9f6d-f344e157815c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/20d3f1cf-6f6b-4119-8008-bc5c6e105464.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fad3102b-f4e5-4ad2-9012-47344a53d61e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/715befe0-993e-4532-85e1-30e038524fb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d7aac328-3f66-40f8-a3e0-e8d7fd4c9d0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7c89357a-2266-4ecd-8239-472e11860608.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/484481bb-92d7-4f31-930a-ef51f0ebf6ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f1efd5e0-c6d5-4d98-82cf-af28ef0ad044.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f574b116-7f36-4ed5-9d6c-d885fd7b6caf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36a7f067-ace1-4aa2-baba-c1b401354156.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b71d89cc-dd37-4883-830e-cba59a8f8e6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f45dfdeb-b9f7-41d6-9867-aa3bb6b0c1f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36f94503-a86a-40a5-9f78-7243626f27ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6cf1348-45b7-4faf-808b-18e5797194b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7b5abe4c-4afb-4bf7-bca6-e22c876e6771.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0e0f612-3691-4d9d-9420-72ec8d9304d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de9d40a1-45ac-4ec0-a9ad-7c3da394fbfb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f532195-38cd-4ffb-ac6c-d29742e035d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/26c94e32-023b-4963-aca3-525ac2752d2c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c878e73d-6c8e-49b6-8b14-9f36d4f58c11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/759add8c-3802-46f2-9cb6-06b092c4e9bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/162c2fa0-aa64-4cc8-aacd-930750957868.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/25651f11-e9b6-423e-a9d0-d20347cb4caf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7ece924-978e-4d9b-aa51-880dbe26f155.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5097f205-1497-4f5e-9f8b-a43a7f4721e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f785a2f6-f2f7-4a89-9bde-e77d31e35a6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5951d644-7d41-4dd0-8166-0b4a27745cf3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3cf312c7-2d29-463b-bcc2-2a7e074d1d06.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a3215a02-302a-40c7-ab0e-e1159cce77f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5a306db-75bc-4117-9b8e-840ce8f9fe4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c310c4ea-4a38-4d9a-bfd2-bcf0c6a30436.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e9af92f0-49af-41d8-84ff-35f89293484f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f23bbee6-567d-4ef8-8b29-2ecb12a45be1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b6d0458-32b9-41a1-bab0-0adb2fa5bed4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab497625-43dc-449b-b246-1b3b09b53248.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ebbdd65b-fac9-4bca-b3a3-ebfdf73b03a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/62fb5ffe-8366-4019-9b0c-49c02cb4280c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6da5d4d-b527-4207-81a4-1a3ca149411a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/88d29b61-2730-4f6f-98bb-4ce5e5de3b24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4ef8b5b-a690-40e5-8b48-ddf96573cdf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7ccacf95-ccc2-446b-8f5c-08b32411bed6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f86b5b00-73a5-4d58-ba24-196ee4c58b17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d32664da-313a-45dc-90f7-0759ac76e207.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/50971dbd-3084-4684-b25a-b7194e8745a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4205aee6-4453-4f1c-8c90-6e5049a9e085.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff33da14-0bd6-4fe4-9675-ef704bc33b84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df0f59ce-d11a-488d-a51c-bd9105e592f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a55ef250-42dc-43f7-b9f4-ae0da1dd62ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/368d0726-3481-4f66-81a2-f89bb7294ca1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4a720db3-d3d3-4814-9029-5271b4b3cf45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/15fa29d8-09cf-436e-8bf8-cd85b260f2cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/31a5e26b-48ea-4bb2-a0bc-8b2dbd234f0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bbafc410-d00c-405c-b702-5718455ecac5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d5b43979-19a1-4102-aee8-5aaf1307883c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c8da91b7-af8e-4efa-9df3-0460dfffbfee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a55c56f0-ed46-4761-80cb-5472187e70cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7820e3bb-b904-4d1f-ab4a-2822209e62ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60b61cb8-6ef6-49ac-85e0-d3c58996ab70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8c07c421-a313-4724-b05d-642bf2073901.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8f0e79ea-5db6-4a83-9886-c7d58f5f4825.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4a7d4dfd-ba92-49a4-9ff6-4526f70b4904.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0b3ee88-fc81-4a0a-acdb-d8c030fac137.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d6ea0603-0633-4cc8-8d36-f523370de74f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9405a1ba-63e1-4c5e-9430-4952d1d27496.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aabc17eb-8303-4d12-9222-f2b2c07371e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3752f5db-8f1a-4060-aa89-e3aae6af021d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7f67f50-2929-431f-a9fc-adc24518a87a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6c069d96-31a4-4aa4-b808-6012bb4e5ca1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5cfe7d99-d956-479c-85cf-7f8d65465f5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/32721abb-10c7-4797-88c6-bf47d32e95e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/67bb2550-c8eb-405c-a96c-7e820dd247de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eee11529-06f1-4541-a1e0-afcc5a5bcef6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a02c7ae4-7571-4ae8-ae35-5e4121ebd250.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2b55eeed-3408-46fd-9e18-d7c5295a92b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e32be4a8-2f2c-436a-8a3c-e4e424fad060.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b0f4094c-1266-477f-8fec-d85e5389711f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ed1cd5c-727a-4952-8ac0-52992df725f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f3b65849-f297-491c-a9fa-3ce25dcfb1d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5823bee8-1a8d-42fa-9364-af32732f19a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8ed37733-e182-4508-9785-5a546fd41557.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a27df31-6544-4fb5-8ebb-11311e6393f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d2e20452-1f79-4205-84d1-e658ff5eefef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e8868e22-3e5c-4e63-9dc7-9180b20a0b1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/46f37e46-e4cd-4677-875b-1f1b28cfc70d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eb98571a-e1f0-400a-b8ff-17c4bc332c06.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dfa37727-e289-4b2b-bd21-c6a4da9652e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee1fedb0-5c95-4e4e-b278-d8c1e2938a6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/59356ce0-39e8-46c2-942c-bab047e62b4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f96be07-c2e7-42e0-bb07-cf463da8c69d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/81da1196-4ca8-4c29-b0cf-6c6cf6386a6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/15cfe136-58ea-4e38-b3a8-d372ecad4ac7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d6dd5d18-ca52-4667-a951-e4b8112b1e01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/df174c4e-d805-4182-81e4-75a2887d046b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/784aa072-7400-4f08-869c-7d47230d198d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/505ab47d-f99e-458a-9ba0-fc4fecd76760.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18b3a0ce-d693-4953-992a-4f83bcf89697.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9c9d6aa8-27f8-4761-b2bd-92b89a895c64.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/345d4363-a4e6-47f4-97c8-9bbd22061ae9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6d042e85-ab49-4d49-979b-934ecc9f872e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3de892b0-7adf-40c4-9fec-db8a7e5bb5d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5d71eadb-bc50-47f0-8c4b-d0b803d6d559.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39b06cc3-1e49-4459-bb87-b8b69bbe74d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/753abac2-a2b4-4f35-bdef-f9b07d8844dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e56ccd69-f456-4b20-8b39-d369c3b0164a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e06e5f32-c3a0-43ee-b912-f31669644d14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b8fea483-0693-4666-a9a1-0afdfe167bdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4cbb68e5-1ca0-4a2a-b3d2-022110364d7c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/db1d2f27-764c-41fc-9f53-8e62f2a00955.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4dc21966-d086-4e44-8e00-d0502d90987a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a8e34a04-dfa8-4ccc-894a-bda5f0542c38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b37c8b1c-335f-446e-a93a-34bc910dbb7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37fa8cec-dec9-4772-9773-9fb2b26b041e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1580d1c7-8898-45bf-bc6f-518f7001ceb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/525353ce-858a-47b5-aadb-3e25229f2d95.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8de60164-25c9-4fae-b7a7-8eeae8d34df0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/05ff7ddc-3fb7-4378-ac14-a10a08c64aaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/945a3e8f-a300-44b2-bf25-b8fdc63e0c7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc9a9148-7419-4ba6-a56d-a7acdaae2d4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8548232a-97d6-4980-90da-5e70e587c980.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/53bebf3f-df56-4f13-b65e-456497a6a741.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8494a8ec-6bad-4e3a-b4da-db9383a950bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0749e0ce-a84e-49bf-9275-a1ebd9281e3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff7b383f-7b87-4f73-9c69-ff5b97e3d13c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbfc5c95-feb2-43b8-a37f-0846c5db5848.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/63ffaa0f-b764-4d5c-8462-8935d6389bb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3b7f8762-a4db-472d-bdf2-baad45d06f86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/88b1c846-be22-4ef2-84eb-52f20a37dab3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b2753475-d0b2-4dde-8a7b-311e1db27397.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/70a0cd6a-43c0-4cf3-add5-be674c5a9de6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/513d5e43-2714-4f35-a4af-1947309a1933.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7ffe65dd-764b-4e85-8b9a-58c229abacdc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc8eef60-eaf9-4586-be77-5be336f9b27c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1b605652-ed75-4e59-9d78-4b5ee5aa11ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f023c55-3755-4304-ba2a-16cb479ed2d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b7d328ef-e05b-41c5-8fce-76098c49d0ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff9d9177-ab50-4667-8193-9569ddf519e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bda7d05e-c319-44a5-96c2-7c7c2e77ff4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/64ee25da-af6c-4f39-8432-20a6bfb82568.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17a6c2d3-d218-4ef3-99c0-4da163fc9e52.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f855f7b-ed9d-42fb-8bfc-b5a4cdc1b2a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ca1470f8-20fe-4e11-ad99-9c83248e7b11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdefd2ca-f267-49e7-8f0d-8e991265b888.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dedbfa49-b7e6-420c-95f5-6660ee893d96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/484eb1ad-b27e-4ff7-84e4-402753501616.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c3be2500-5435-41e3-ad66-1a6d65725b16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98834026-d9fe-4aed-89d6-f175dacdd81a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b6c45f07-6068-46af-b35d-302cd05ed4d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4ade4645-44d9-45a1-b574-5d1718c1e76c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/666dc889-847f-491f-ad5e-300f859dd70a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/76feb952-4a70-4918-8a8d-881eb14bdcbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d835db70-7ec9-417a-a959-2f7682941e2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8c4a2fe6-be52-48dc-9292-9f4a5c8adaa8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c244f974-2859-4a60-910b-29061d94252b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f862a9e3-b63f-4dda-86ee-cde5be5f3dce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d1ed633c-7dac-40fe-8f79-1c3b68f2f006.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c8b5303b-d3f4-4aeb-8dd1-89cc191694f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c87fabf-5d43-4d3e-8c5f-1e6eb2e82b73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36283110-2808-4ac2-9dc7-c8e2a6754c83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/80da7404-f9b9-45dd-9233-139ac5f3fb24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cdf1f363-604b-45f1-9fcf-0f2f0c43ff3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d2551ef6-c18a-43e5-ba44-e1b07e5bc2e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3bb7e241-81e4-4257-8c45-1a51d6b798f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1b8a2b4f-11e8-4d96-aa82-9493128a88f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbe472aa-1dda-4c4d-af44-2d41966c819d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc03198b-57f4-47b5-8808-114fd5cb9808.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9aed29ce-85b0-4cc5-9dad-7a1aac9c28b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a30e9f7b-4de5-4e40-afc3-cf23361a14e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/50292299-72e4-4729-bf27-e480aa6fa2e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a7f54a7d-8dda-4fd9-8e1b-e1e762a34da7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8c9a2306-de2d-4631-ae28-9493a8d6a586.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8f234a84-4067-4bd2-a114-8b894ddad52f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/542836b4-9b88-4b90-85ce-e8a1f4971685.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4f5d55bc-af17-4774-a3aa-abcbde934944.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/64d55c5b-88e3-4b28-8e1d-f30612f80dd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39efe67e-f7a2-4042-8525-062c18aa96f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e15fca95-ebf1-4b48-b94d-aa5b702369b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d0ef248f-6358-45d2-9264-79533aa50593.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/31d4a85f-70f6-4831-9045-a715d9a33825.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b396e6cc-f447-49bd-9b86-c75c778f1e35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dff7255f-885f-49d0-a6c0-96ff8404e04d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d9d7d467-d727-4ab7-9df1-53cebad56ccf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a18b6f76-7c84-4aae-b9bf-08a85b32c393.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e32c79df-9fe1-4ed0-bde4-eba4e341936d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c30551c9-781e-43c3-9516-636e58982bbc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/344b53a8-61bc-491b-bdc4-f63422c192d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be07e5c6-6fe9-4590-b456-6080f5bd5378.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4b5f7134-57e1-4469-b6f4-ab7840b33e05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9c17d2a3-8d62-455e-90b8-5da650837b01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a44083fc-6619-4ff0-868e-a301c651a144.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f9bfb92-2930-414a-bbeb-8f63a9c73de3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f0576862-a1b3-4029-8ab0-d7dae5d973f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bc25b9b4-252f-4f51-8294-97723612fd00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd3be36b-4455-453d-929b-3f68447cd8bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/00f08de1-517e-4652-a04f-d1dc9ee48593.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c112ae01-e406-4565-9691-bc1809432bc8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de1a97be-5e54-4fb5-94dc-295b11b74b3c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b01d33db-52b8-4941-80a1-0f46f3ed3c69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/82b47fdd-7456-42c3-869e-b87662e6a421.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/68eede7b-2f55-4d00-8158-a0801fa7193b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5a678523-c339-4b21-9cab-02c304308023.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06550cfd-e9d5-415e-bae9-3146329ed9e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a024d155-a276-4395-826b-193fcf6a5b9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8a2c5b47-e18b-4a56-abe0-fde1652dde49.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4553e5e4-91b1-4f9b-b154-d2829eaad12d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c9400785-1742-4d0d-84db-5384d03de033.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba8d3130-4063-4339-bbfa-474259060f5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c81c2feb-efca-4f47-9b09-9d0759957ab5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95e94513-0036-4cda-80da-e5f8d5fb2738.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/19761fcf-760f-4a6f-b8ca-1ccf72fd8253.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d4d866fe-ae80-412c-aee6-9ea881d56f79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a229390c-68af-40e5-a2d2-8d1abba22b69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/581a6cd9-f4ef-49df-8c10-9ee6468b0e40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/db8e9a3e-3da6-452c-8ea5-e2e082a874ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a3a0a2b1-8ee6-4548-9f18-57e5d5a79d05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/16aa1662-cdcd-41e4-a2fc-4141bd950b39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72dbeeca-38a3-4375-942a-9c3b098da64a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ded4e621-a3ea-4210-8349-06d991c8c056.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f79893ef-5f7f-4b63-bcbe-694a2bd8bf42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/582e641d-ac17-43b5-89a0-453555dd152e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/28ab894f-1324-4107-9af8-78f7928f512a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/00436515-870c-4b36-a041-de91049b9ab4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/23f653b7-5388-4213-98c6-418aa9eb980d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96862a19-db35-4c6f-a6f4-2f00a1bd303d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/28d0f2da-cacb-43b0-848d-4c6389d55d99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e14f7f94-baf7-4dea-b3e6-d69b29576e3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9a1717e6-ad2b-4131-b00a-f3f453eb8b6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5557e72e-07cc-4279-8912-2c319937c4f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4be8d1b6-04c3-4bda-a751-15920a587805.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4989ff4-3c1f-4de9-8df1-cd50c211273a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bb6d8e4b-f416-435a-8dee-fe3f60b4db11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7e507d4b-e304-45e4-8217-65c1266b3eac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d17ad5c8-2c59-4b36-9722-3d4e9bf12f87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/647b7bbc-5cfb-4776-b157-838a4264d318.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9ccffe6-0f7b-43d7-9962-84888673fb57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/81a1c5e3-1757-4e26-9b57-4e47e2383456.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c80de4df-088b-4b76-947c-82e5bf359723.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/75a7036c-3e9b-4819-ba0c-e8594eb80af5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/804df40a-0ae0-4d28-a353-dd634bfc736e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5278b08c-a475-469e-8910-56bff6d85210.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/467153ba-90bc-4f63-b648-06dbbaae7b38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cde2a4be-8a7e-472e-8303-65c4ee046758.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3a1a5ffc-ed1b-4e5f-9358-bb67ed1e6a2d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/42a6166a-2876-4821-a365-67d65f94ba90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7b2ceed7-c717-4cc4-b311-d58da6fd8fc3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/56f30010-17c8-412a-8508-78dcb8879221.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a7d395a9-9041-4b02-bab1-eef31037ad78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c75ada7c-f5f2-4ea0-9876-05d332328e67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c62e023e-9f94-4f63-b11b-2cdccf45f141.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/984a4270-8dc0-47eb-aea8-55e56aacb89c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a0147f56-89fe-488b-9cc1-25991378d532.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2c5e272-b2d0-429e-ba46-75634658d19b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1707921a-8b1d-419e-b5de-6e069bc9e4eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a045b782-7673-4f3f-a018-07eb3ae96321.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4cb68d48-e377-4079-a094-2b863723204f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b1ab06f-9e86-4fbd-b34b-2a83bd811ab9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5fd7477f-327b-40e8-9ce3-cb9b7dedbf45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de96bece-5b97-4ca8-8e96-d683bfb6f441.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/66dcd5b4-b773-420f-86d5-afce8bef2f57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d77b519d-abb7-49d7-8bec-dedebe8f50d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8f8e6d37-39ce-483c-9611-2657275fd212.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/063f63c9-7e5b-4360-8d19-0060d849fdbc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84e8714a-0b93-47c6-977d-0424c6412af2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/1e83e240-c08d-4f0a-8236-d11a3f8d95ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71d63444-7863-449b-a3f6-d599b6d00e49.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d656b7a1-1ba1-4ee8-ac6a-71fb8e610548.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8be3494d-fe57-47d2-9dd1-ac5db3781850.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60036cab-47e3-43c3-8772-fb6bd7afdd2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/745c9dea-9742-4ee1-8090-14cb75a2dfee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b2541f48-1acf-4f33-b604-8665fc1517c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbb74e7f-194b-412d-a527-117ddc2ff022.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/74365fa5-5597-4353-9cf6-da8769145d55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/52c8dcfc-eb27-449f-aeda-b14412989a4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be9fe97a-ba2e-4eff-a0b1-2d634d51590a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95594cf3-2ea9-432a-957c-b774f59d18c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bf3c9895-5781-401c-8f86-6764add1c311.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7e2b8ceb-9db2-4159-9e63-96d734dd1218.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/482072b4-619f-4398-9571-d9520d195406.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c9c40af5-bf20-4889-9eb1-9ad3e9ec3413.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b4587e51-7fa7-4264-84a0-2c000f98c0a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17c588e7-bf2e-4a0f-a766-1455b6e80931.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2886322-b4ab-46ca-bcac-4d70db04071b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/82475321-76c4-44da-8799-38399abe8037.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/99d72abd-78dd-4a09-8f9f-d07478196760.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b165b941-4ec6-4f1b-9f03-2e908de24266.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a9023293-e3bb-4516-9769-d3c5b9565e61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e42151cf-9ad3-43de-a93e-0ec094a323d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a569ba29-63e9-4a28-a0f5-7fff04b72484.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5b23de86-c4a5-4c55-b38f-18155a87930a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/30258414-64e5-43d9-94bf-b6e175b91542.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b20c86c3-84f9-466a-a405-a0cd7207a84e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f6ea62b5-fb92-45b3-b59b-2f9b6d8b7e7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ee1e76ad-01a5-4bc1-b649-c5c51dee880e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/349b7754-b129-4fba-a058-6568ffc131e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08c343b6-9dc4-405b-87b3-b6534abcb990.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/65e2146c-7f83-4206-b996-0ee955b6f825.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a8b9eb8-d466-4470-9331-a28f17222877.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/565fe404-f4db-442f-9921-eb1e7a19d763.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c28a09eb-b266-4625-b6d0-74f6003b7fc5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7c2ad76c-88a5-4a25-a0e4-49437ea5f628.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c4e96c53-34f7-4607-bab4-45e982079b2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/931118ec-bf38-46a6-b74b-4431ebc5ee56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a288ccb7-b58d-4411-a5da-6dce74957e74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba1065ce-267d-422f-aef5-6d04c04402d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e0234148-6b5a-4c43-8368-e97889f65758.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a3729a13-c791-4f7b-bd48-fbaf4f7fc0e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9e1cd2fd-9fa6-4e56-b885-528b97ba63bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/930cd8a6-dc7e-4b4b-9da7-7809408752ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e6107e96-557a-4fa7-9d7c-5b4490c9072a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/be90708f-2e42-427c-b532-5501a4ab1a25.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff8dffe0-57bb-4b95-b425-38f8ef290339.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ab81d5c0-1fba-49e5-93a8-fd4caee5f33c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f1eb727e-efc8-406e-a680-7b1b4994d26a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/905cf7dc-9b4f-4c3d-816c-65c3b6be7237.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a204aec1-7fee-4c5c-9dc1-fdcbfbebcd7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/68c51c0c-777a-4e8a-9543-7f6a6101e6c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c310518-3c5a-4e88-a2ca-fa2a267ecc8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7066078d-0568-4411-b20a-09d0c9a87ffd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/06463240-3dd5-4d64-ad20-0956af60d1a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbab1671-b256-4cc5-9219-79fb47ef75c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d528d9e9-647a-4e2e-a16c-bd5e32a5bbf5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a34f8423-e21c-48cb-8f9c-c8a060028dcf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/89ef518a-ad5f-4f83-9125-ec26c1006662.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4c7afe96-9f99-496f-a4c4-d27a3d76a767.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc6c1c5d-cdc3-4bd4-a10d-c8c0859e2908.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e0d21bd9-209a-4675-bd07-6f8b9fdccc4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fb99325c-b1f6-422f-8b20-b6fab98c8fcc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ba0b9822-06eb-4db0-bf37-20d894589ef7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bbc14aa3-d235-476a-a27c-a2ce15ea3495.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7b7d7bf3-0684-465d-9a74-f51887685387.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5983eaa7-bd6f-49e6-a6bd-4514d950c177.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5e372d86-f71e-40e7-9ea3-bc0182904214.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/934522d3-fec3-4ba9-ae82-10b7d9462a25.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/997ffa12-415b-4573-b3ad-b40db604668b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6c25a83d-62e0-4336-9175-da386d28d78e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a7ad59c-c9fc-435b-9e41-844a9477c6d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/000924cf-0f8d-42bd-9158-1af53881a557.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/425d97a7-c5ce-4380-ba60-5a01a6618e08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9ea87997-3613-4bfb-ba2a-80d8a39c3df2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3be6a4c5-7c20-48cf-ae13-e18a828b3868.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bdfc8797-6cbc-4184-a847-8f468727f67a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3d963020-db86-43c6-8133-21c69cb65df0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/60ea902b-a46a-446b-8692-c6b803775ee1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/392effc2-fa31-44b5-ae75-8503cdb81837.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/abb7c100-df95-49f9-a46e-63e0665d3204.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36ca4185-52e1-4cf3-b007-5c7680d2ae74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d593a9b5-6908-4b1f-9d69-f6839734a27b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/942fab2b-4338-457a-9005-c7b18ea41798.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/392d05d8-1655-4a0f-b254-71826bfb4742.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7d8ec5e7-56ce-4e3a-99d5-6f5971b0c004.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7f20ad0a-2cf6-452b-91ba-628e6391e63c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e7aa8c67-b801-447d-b24e-18b77746b4e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b52244ed-5e8f-4ab6-a2b0-9bed4ab0ff2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f173c67-3bf1-4df7-9de2-be63a5de9b73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/988ba152-ec89-4213-b2dd-7e167f6dceff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/add544e1-cad8-41ef-8773-ff03258737fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/455f89b9-3245-4c41-87e1-a867ff4622fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aa8377bb-0c43-4c48-b185-bf96cc5c6537.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bfefcd13-122d-4c6f-8f4f-5c53417165db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9760925f-858b-4470-aaeb-5908bf03672a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d4977648-972e-467e-9a7b-9143c23ec00c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08bc9387-94f1-4ce8-8958-15864bca9052.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9eb93611-08de-4ae9-a44d-4d86dd123013.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f11b3317-0eff-4dbc-94a0-877ced02472b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/77dc3ec3-a29e-4733-99fc-80b51a76e833.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f3826a5e-d3ca-41c5-b389-c128589aacd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7110c59f-8053-40a6-81cc-e0d43919258c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78773a50-1513-4336-af38-fd93b12ddd57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c147628-1797-4d5a-95de-0d216a662bcc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8b8d8aa5-2eb4-4283-a4f5-0d3e1f81f8df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c31cd61a-4c6c-4924-9ce6-99e5883b7265.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/789f8e9e-59cf-42aa-88dd-33f18f0967f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95ca6d35-0ed6-4ace-b0c3-401ab83c9600.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c5d83772-02ee-43f9-a2a1-b96d53755ab6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ce6329e9-f7d9-4212-b6b0-22150330c6c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8c7ad8e7-43c7-476c-992e-26312e5b3362.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c1f94928-371a-42d0-91ae-f959928694fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd977c7a-ecd7-4992-a2b6-940c37516996.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6abf7105-0f64-4d63-bf5d-9fa0084ce621.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/07daedd9-d1b8-4ff1-b203-24e71326d083.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78dde3fa-b019-4cc6-aa77-2a2935675890.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dd55e770-9064-4060-b79b-bd231d4bb29d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e542d5db-28c5-4e73-aa47-a441143887cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c236d6e2-1fca-40c5-a0fe-a91ff60883c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7bd663e2-0ced-434c-9db9-d333071ef06c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/efc15425-1d37-4789-92f5-42dac97bd1cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c21278c7-0e37-4026-b9f1-14ec778903d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5ad581d1-50a9-4473-b270-7494d7eca79d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e43de397-bee8-44c5-8e12-e77fbdc2412e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9f3893a1-3983-461c-a04f-f8701d4668ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b28a6d18-ae02-47f7-ac74-05b4e453210f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6bf3c8e4-67d7-4e39-9d28-fe9a396c9d84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b82728f7-354b-4176-8908-8edbf3327e0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5018aa71-340b-430e-9017-0c5cf8e4b816.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/17aba977-7b64-47b0-acb0-d41abba1fcbc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fc76e52c-6302-48b2-8750-2f8584fb704c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a2d27e14-d9c0-4596-84d8-c526b0afc9a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8062dc3e-fc3c-4e7e-b418-96c59942426d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/561f6992-f97e-445c-876f-d252ca147a97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7159b3eb-65a4-4ca9-aa67-106abcb09220.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec5e3484-2fab-4fdf-a264-58b1d001d0e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b17fc3e8-99ee-4297-8432-0bbef7d24e1b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/83a9ae1b-36be-4a4c-a0cf-00e76a4f0463.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3dae24d1-bf9f-468b-9cfd-4fb768b8eb53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6570970b-d2ce-43f5-b160-8a59e093749f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/afeaa6a4-59e1-4bd5-9d2b-41fe94e789fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bf7225ea-722d-483c-8fd6-3118966ca7b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4c75d5dd-63d8-4678-9f22-61340ca246db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/08a5ff94-633a-4b7a-babe-6f91a324e672.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/115d5f48-c01c-485a-8d92-da9529dd428b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96bcea3f-00ae-4f28-958f-d5263e2a01c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9e219c6-6963-4c2b-b628-2db1ab7d8d78.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/38b5b90d-6f8c-4470-8d45-b83e5dff6a4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fefb28ce-8006-4fca-af2b-5dc1a4290772.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9cd3c04-953f-404d-b252-c860b11d167e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fbd6b078-cca9-4c7c-8170-af5d714e49bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a69e6362-4832-419e-9a66-0925d3492121.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/491c34d7-3a83-4a66-9706-7cdca0df644d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2474f5d3-45d0-44d2-a859-90a39f7dd9f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e4c7e8b1-c421-4360-9874-a12c70a95a76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d449d4c7-3359-40a4-b9ae-da2911ae2f34.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a01dc83f-bd19-454b-a317-007a2730852a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9d39144-ca15-4589-a595-aeb28b50925e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/32b35555-525c-41c4-8bbe-44ae86d3ab26.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/59fe31b6-e98e-432f-aaf0-8d0a84f1a179.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8172b32c-460a-411f-b0c9-c7cc82297642.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c7c62636-1ee0-4bc3-80a1-99aaf640b59a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ec8ab6f6-b08d-4768-86a1-07367371a0f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cc8f4537-b7d5-4388-b060-c1bacebcffc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0e1ffb7c-6d43-4db3-a75d-8da4de98d80e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71c67893-6acf-435b-b80d-9100ad2e5d2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/91bacb33-a296-48a5-addb-7f553aaee1e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/40a41f0b-a687-43c8-bed0-1dc5a83eec71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71c99471-4012-425d-b52d-17f161aa1262.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09ca5945-7f34-475b-92fe-33b028e15247.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/31cb3893-373f-4126-8654-48ee8898b85d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5d0e05a6-389f-4be7-b91c-8fbebfc79ec6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/506792d8-848b-4ed5-ae27-000f116aa3b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/51a24cb0-add6-4aba-b1e3-1500bcb47fad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a8023fc8-e3a5-4944-be13-011b2f5f16bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e43f52c1-f08f-43dd-a315-7e52646bd424.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8fedf466-d1bb-4487-8642-c18f8c428bd3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/31a577cf-9e18-462a-b220-74bb2e2a850c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/94508cdd-9336-4c52-a10e-a82a3085b9e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b47667ed-c87d-4fa6-924f-4f8383a26417.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3c8cc0d1-be7f-493d-9570-542d851f623b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cbe48af1-581c-4b6b-afc7-064dc3305195.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/567b2444-0714-48a2-ac21-43aa304b99f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8778c62b-df16-4649-ac6d-46aaf01f9f9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9be3c52-0a14-49ed-9963-2d81371cb27b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a4b7d67d-7e52-4b14-9897-4fa498b25d0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/68fb70d8-304f-40a9-ac88-0d3103591093.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5f0b21ab-ed6f-4ce0-ba33-af559c6c6c5f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/79ffd214-6464-406a-a78b-5aaa8cc1fe7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4dd61819-c62d-453f-b473-0e5f82a38e4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/37b9c031-7681-49dd-ad30-de62d25faa29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b35a97b9-05a2-476e-8edc-356e2b228cde.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f693f17f-613f-4eec-8076-32b3d957557f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9bfebbd8-d79d-4a61-9403-d33d3406fce7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ff3b24b7-a7df-4ee0-a3f8-d213914355c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eaae0864-798c-4b37-a40f-36d5a573e467.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/59a1ac85-63e2-427b-9f15-9321caf1c4b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b3cbba88-1fcf-4235-9810-ad1ea8059fb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/089df963-c3c7-499c-afd8-2b0f9224c442.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6399d559-1e9d-41e1-bde4-c7a6f2370fee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6a7bffba-4788-4172-81bd-9a283392e4d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5534eab3-2d20-4921-a785-1afe09cabd4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c5511c9-23e5-476f-ba84-e2a9f2ca39a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/09918992-0dfa-4ab4-9e3c-51444c0267aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/39b5721c-e523-43c0-af9a-2d09b13c7932.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7d521350-ccf0-4e14-aaf7-4797e21d8313.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b95ddea5-0c01-4b30-817a-e3daa23c723a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/18bff0c2-16fa-4681-845a-c9a8f019ceaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/36fd1a2b-9267-4e60-8eb7-544c498072b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e85b9e5a-ea0c-4fcd-8e7f-2f8699923099.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/44931a76-76ce-4e74-98a6-5db04dc4d8b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd6f8775-392d-4f85-bc25-398c02a30678.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/96a80d6e-d45b-4613-ad0a-a2fac894846f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e1d50f6-0065-422d-9f93-8680627d6835.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fee34cf4-5179-488b-bf71-3e8f00f26840.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/776b44fa-43e6-4f7b-87fb-7ae97763085f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/de14c4c2-6253-446d-8ee7-3acedacdd379.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5a18b41e-6e23-4fbe-a55a-ef6cfb027b0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/ae505ed5-51b5-44f7-8145-6cfe7785b756.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8e148972-a43e-4717-b1d3-d3ecdce24f65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b496388c-8522-4f39-b367-34f9e19dd583.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eefe55af-adc8-4e5b-97f8-d90c13e1d3ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d47f354b-d29d-48b9-9c54-07c1e981bef4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c2fba3a0-28a5-4a80-9130-0174811d4f53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fe29ab2c-aee8-42f7-85e0-d836d8e30ea8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f9f6d4d7-a07d-4856-81a2-5674ba0fc0b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8df1e7b5-03d8-41aa-8bfd-4b68c13b8277.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/4d805b5f-5521-4e8f-8c73-85435878d0ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/dceacfbe-4f6c-4c1c-9fbe-67a4afde854b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/71b09f7a-7ef5-4723-841f-eef8725e7688.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5947cafa-9b58-4565-af86-b8e492d6620b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/425911f7-a2d2-4c03-870d-dba023ea3cac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e67c40c7-339e-4822-b9fd-4958a62c0039.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0a7b13a9-bcfe-4a99-b699-4c8cf6882f04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/48e7d8e1-f4a6-48e5-98dd-d96e5b3ccd79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c6a5426f-108f-45d5-ba62-644c004d497b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/6e40fd1c-14f6-4cdb-a158-d013f95f2648.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/085a25eb-1ebd-4bf1-b320-7833e7c37553.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/98eca0bb-08a1-4063-beb0-0b35819e93b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/793c8547-aa10-4a67-88eb-0318ff9a6541.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e57849e2-d2b9-4ab6-a3e3-0263a4a78b33.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/72a3eb20-c10f-46ae-bcad-b9f6e3710d8a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/3465b95f-b01b-4c97-97e0-e4986afa5bd8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b9e89b84-5cb2-4005-b654-a3e13c544923.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0cea4fac-4e84-4857-ac38-f2eb0dacfffc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/87c9db93-c4b1-4488-9f8d-d94ea473973c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/b18e4375-e20d-42e9-a545-a62294135c07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/e27a1adc-88a6-488b-bc9c-8ecdccf093d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/bff56724-dd71-4717-9ce7-9749d44361eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/95c36604-3772-4682-a875-93bf58e96727.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7697387f-7a81-4864-8902-2e716d03b014.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d57b47b7-2324-4bdc-a0ee-27ad6925d9e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/8bd6bfaa-af66-435f-95c3-99c9f5e7074b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/d845f759-bc82-40b4-b5b2-594550b728bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/7193cbb0-daf6-4ee6-90b4-1db93123040d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/aafda091-8953-40c4-802e-853a206e50d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/cb3816db-93c9-4d0a-a163-eb40363c45fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/78b8f6bc-96ba-4528-b6b7-39d1a140ce07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/2ea47f2a-f72d-4de6-8620-d54d44bd5ea9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/40a7d1e6-5d61-4f57-aab5-f00928e6be5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c324f57c-05a0-43d4-935e-371b7bef4ac6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5e44964f-bde6-425b-97fa-fb3b596190cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a6c2fa0d-7cd9-4a0f-a40d-770943f06072.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/f53f445e-bd91-4aa3-86e4-b2acd8873b62.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/fd8770d4-c595-4cfe-965b-9e51bf004dbd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/371e6626-7884-4232-9629-0220fe6e7172.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/55aecdc5-76dd-46c0-85e9-58e47199894f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/5c9364c7-51da-490b-82bd-e7078e9c21f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/0986f27b-74ed-4bc7-9595-e40b345cb161.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/447bd1c4-c2d6-4b46-8fc5-6eb2e5bbb8dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/a771930c-cb2d-4fcd-8ee4-8ce2acdd1115.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/9576b42f-84a6-41b2-8b0f-75f867fcbc38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/403af764-1328-484d-b58d-2b306c602c60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/c43a6acb-158c-4023-8cc1-e82d0df8d879.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/84fc2a49-5501-4762-ac20-f10d10f5bb41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/eaa4d52e-bd70-4bd2-9487-c841fde17bea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/911a46a2-4371-4012-9f0c-c3b2b323c4fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0374aa-9366-4a24-8646-0b7656698026.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/134db8e4-e78a-41a8-8d62-ba2414e3d63b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28588c5c-5455-45cb-bb7a-6c06e34a56ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/213afd14-1f46-47f8-9ffd-da8350be7b04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24db06a7-86e0-4690-8d57-088ab93d3e04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1371ec53-f3c3-4c63-8982-cb5a118c6448.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d88d652-4e0d-464c-b314-3387e45580e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22cbd2b2-3229-4e59-93fc-e271f4d4119a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2565d222-7628-442d-ae1f-af5cfab84559.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ac04f0b-2f0d-4179-bcc9-04bcd6ed8f76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/258e3a11-ea93-4312-8efe-8cd0e34023c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ee9ce4f-c752-47cd-98dc-87017c6745f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f659e67-f1fc-42db-be6c-45fdf86e23c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2efdecc5-1b2a-48cf-8cf7-1f736bbbfd75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a655317-ec64-47b8-b3ca-6b347b7aad2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02780306-5d72-4377-8183-37c3e0e13e55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04a6a155-afbe-4ba6-88b2-d2f182d22f89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a9124dc-a484-4423-a61a-c7ac12d131d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1af976ad-7945-47e1-85fc-de29898ea31e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/117061eb-6454-4f19-8730-95c65a4029bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c12861f2-2d63-43f1-b615-cc6e82116faf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ed99207-1a38-4fc3-87f7-a4582fd4a8d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0431b96a-9e84-4d8b-8e9c-b28c91e10f4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b730fcb-2568-4fb2-8964-98f4c171142f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/264d4100-0a4a-460d-81fd-e781bbf6ca86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/141fe03a-61be-4ada-b0d3-8699f729d2ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2392af63-9496-4e72-b348-9276432fd797.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ab5ad27-c2cb-4e6d-b6fb-bf902aec5b8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0f4c0b1-da34-464e-ad29-c8f7f309a30e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d83d57-c9c7-4c15-96e9-fe00092c999c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ebff610-133d-4eca-bda5-deecf5aa1417.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1177af10-f84a-4574-bf9f-36475010807a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/012d2cf2-f973-4bf1-934f-295df6e44b60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e5803f0-1653-4099-932c-e3df9f402772.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0124f347-a386-462e-ac00-4b3ddb2ed159.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24e408ee-ffab-4bc2-b82e-356d87e2b20d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2164b764-955a-4d94-abd9-b0e5782319cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237ca121-3ec6-4571-a31b-30da50562224.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19f38ee2-4eff-4302-8b9a-60ec1b002ea4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/255952dd-d7d1-4329-a713-43039c15e2f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fc71688-34a8-4b14-8d21-896e1eecdfc5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02eaa8c2-e818-4b39-92d3-aa092553b811.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a8b084b-db3d-42a4-91ee-00f73266f82b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21b5ff6c-8c43-4473-8f45-5abf9cc15ff0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13bd80c3-a3a0-4a2a-83c2-4b298a1f47a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e419046-9528-4866-be72-794f1e268893.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b6df336-4ab2-48d9-8f10-120c6120bf98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23613eaa-79ec-4cd3-9276-d08f3c6e03b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19e2549b-6ff0-498e-98a1-115e87b900a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f6abbc6-0f2a-4951-9eae-10b784fd74b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1143fdaa-99cb-437d-88de-0a9299bf8e40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2189bf86-a0cc-4aeb-9320-273a6236d10a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0df7e57e-b1c5-4ccb-ad19-4348b8818882.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03f9f71c-8f7f-47c1-b39a-14fbd3d30c98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1eca6e1f-ed7f-4acd-bafe-732ca767832d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0198e5bc-ea34-4e84-b21f-1a3ea96801ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e31768a-fa82-4f1c-9f5d-3b2bde11fb6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f499457-7527-495c-88cc-e110465e22c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116fee2c-9f15-401a-8a7f-c260a6f5a8e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0280af91-28aa-44ae-b693-c091db206244.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ef18823-a5f5-48e2-8e51-032110b4e6fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d67198f-a438-40d2-9d49-9e36a43dfb03.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d809ab6-f7f5-495b-a583-c4b71080c9ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04e7a717-567b-4dc3-93ef-6ba4bbdc4a5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c040e4f2-467a-4078-beef-0ff693cfa952.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de0ccbf-7a9b-4eea-a9a1-038dc249e6eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22d3ebb7-eaf1-4b93-aea5-6dc714e3dacc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d018344-f3a3-4ec9-9359-38187eea4a6d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/126a05e4-2be6-464f-8f6b-dc1a4e4b1103.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0662eac-8a07-4ba1-9c8a-e4d15c3ac067.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c520bb-8900-4372-98c8-8311903628fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13a59fcc-de55-4502-b27d-82d3204d8a4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04176263-de7f-471b-9dc1-7a5af4e6d943.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b47029a-b0e9-4d5a-807a-62c8e2d36855.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27f321f6-9d3b-48da-84aa-02174c664582.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/131579a7-8290-4940-af1b-60933c40e0d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ea6243d-2c01-4efc-8111-e197b8e0ab8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bab0fc9-a519-4c93-8e54-e20c596669e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/261e52e1-5c56-4d95-84a2-26841f98ed70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b9bd672-e17b-413d-88ad-3abc090e5883.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fb7012a-2de8-4d31-b567-712b17bb1bb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24e16db4-65a9-4e5e-81d1-701c8fae06ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce59fc7-dba9-4d07-affc-ba7c3bcf6aa3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfe9f3bf-d184-4fcc-95fd-b5195da99e20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f9ffa0e-5c1d-4d36-beb8-8e6d0b6a817a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28a903f0-ca6b-4e7f-9587-7812b25e794f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10ba1ebd-cdd9-4748-9183-4414f09de172.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a61de89-b9f8-4771-ba89-d1de64d5a036.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f73191d-033b-49f2-8e4e-265e164f263c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a157a24-21e4-4d8a-ba56-6b03d0651035.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/303744cf-63d4-4c7b-aa5e-30b50c66ef35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e194355-bbe5-4755-a828-bf4e3710d5de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241a8db0-7e96-43f4-ab8f-e3c4f63e1c74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27b2c589-cd2e-4da5-bc9b-496e0b042312.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25172e23-94bb-4f9d-853e-a4a1d934491b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/229e6cb4-e8fd-43ce-9ab9-5ddd95e28d2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bc7bf3e-8ced-447b-9569-a4c0370d8e4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22465003-1c9f-4ced-891c-7cc23dad7318.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20fca1d7-2960-40c8-8752-abb56f960d41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c52a1c6-28c6-4e39-82c4-527dc29eeb05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/121711ca-e10e-495a-90e1-296b643f48e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02697c06-6d28-49ec-a66e-2eeafeb19358.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a4330d-1ea1-484e-8e59-6502524a5c51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e6afde7-3b82-48c0-8b9e-359eb15618fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24095a3f-0506-44f6-819d-5913b2c21ec3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e4fecfe-a70e-4316-b964-db2750c9cb5d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28b36eb9-398c-4e2d-8994-73c64519b7ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0c0b012-30fe-40d2-b9ee-cf2004950558.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2055beb3-a6e0-4133-82b5-a60e4d428ef3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26902670-d4e8-44e4-b750-5e95cf9dd3d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab2d197-9431-4eef-869c-8cb8e41659dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/245c046b-5ee7-48f0-8c5e-df7f3151c46f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23120326-96df-49d6-95e8-c9b0df966965.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a28b223-22e4-49a7-b827-acfc90029fc3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a570084-9422-4822-b831-efe75299e89c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/117d67ee-2bb5-43a9-8cc8-d32ec1cf6b53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1feb318a-20e7-4fc8-8e6a-145416f972b4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ff3dbd7-8d19-4129-9c8e-783b7644c750.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f19e860-3c16-45ee-a439-2af97f902e35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/312ce1ee-4aee-42da-96dd-0371a8430824.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cd3a288-dc8e-4591-9667-d4f1f5b48c79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10251185-c869-451a-8b36-491c2207ac95.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/233e0be9-7a88-48f7-b5e3-af50cb2ccb4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20f0b519-4336-4f74-b03d-ddc95d454bdb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff4d829-9c29-4f68-995e-2d267375c83c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f72b057-b2bd-4235-a012-41b38a34618e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29d959bb-171d-487d-87b3-8637e30ba480.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/275e46bb-1b6e-4186-9486-6b5e1b5a1446.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e0efeb1-5529-4b3b-b2fe-3e3e0aee0f2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e463db6-45b1-4670-b207-78ddbf96e7aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad0b486-8d69-4573-9303-f0f7452676b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c806439-d6a9-40ff-a969-7f6cd116ac2d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03ff2e8b-e8c6-4a63-a426-f06c9a76d1ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e1d1753-4ce2-459a-8e39-923c0e61d0be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb1398f-eb8f-42bf-ab65-665da6e5f94a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d7f141d-0954-4811-8c56-ba138b74da0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d8aefb2-3b62-4cf3-8adf-b2fd9f7570ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03beea3b-3d59-4f8d-a5f8-a02ae3bda6a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e4a1318-c21b-462e-a387-6d77222b99af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/029760af-1273-42c5-a214-0267fbe016fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19dc5cde-ea71-477b-8ab6-048a428c6a82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03367507-9db5-496d-a20f-bc161f097d51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0feb1109-00d2-4efe-a9da-9827d1d7498b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/305693d4-6acb-4bf0-90be-4ff2a218689f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/31427b8c-af64-4bf1-91b0-32768c847536.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10c41e0f-35e9-4bd2-863f-4b7a69cede01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265c35a1-80f3-4db1-9a44-feb577aaac27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ae254ef-7792-4193-8092-d2d3bf161424.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d5836dd-1753-4f27-8c73-e6b5a459bbd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b4e2c18-847d-45e7-a00b-6c972393631e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cf2d50f-703a-4d2b-a2b2-9ccc4594c875.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1307e549-4650-408e-b731-9a8b07b8087d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1542f9fd-6ede-4b6d-9c6c-b7007eeb1974.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/283d9a75-b0da-4ce6-960d-8ab696300151.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21fbfc34-e070-41fe-acad-cf3b520237f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1044cdf6-d7b5-4e65-b569-10418f948419.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e46f58b-4caa-4b3b-9306-3a68054bf193.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23fa2526-f011-4de3-b8dc-b76b47406955.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02952fe2-ceab-4e55-b1af-71f40a209a1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ea1e7fa-5d69-471e-9655-69542b15d3e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b06bd36-85c7-4495-b0a8-a9aacc29be17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c10e8c73-8d1b-4abd-b6ad-7fbbe0a18346.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/260b87ff-df13-4177-90bb-53fb0618b1db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f665284-6414-461c-9210-61fe107e8fbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13f88b38-b66b-41d3-8d62-d4a2a72c76bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20066f13-419b-408a-bc34-d8be58df5708.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2711f127-4a43-4e83-a3a0-c404c2a19e1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/031b6254-ded2-423a-947a-c4018797c544.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ffcc21e-3dcb-4ca7-950b-856388a34d65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0581ffe-dd70-4b94-8c20-7755e12b0dfa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116d8744-60c9-4371-aad3-39c2375ae1f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3129f567-c659-42f8-b4e1-8a5e3827b477.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f418437-6440-4145-a7f7-b254a91f5240.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20399748-a859-4468-851b-ddbfb3de61d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30541a5b-fe0a-44eb-b031-ccc3085b7f7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/252841f2-7c5e-4554-8181-0c651a885d41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c189e228-37c8-4def-b35b-1938a92f4f68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00786b27-31a0-4aeb-8513-9528fffe7b87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/130ecb79-9e58-462a-9bb8-c3ebeeade06a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d1adabc-7430-40a7-9728-d556d864d953.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28715b54-8198-4bac-b86c-cda1c039b7cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/226d2b5a-b943-48fe-ac77-bf54f57cbca9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29d42f45-5046-4112-87fa-18ea6ea97e75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29e30dfe-0f9c-4300-89a7-cf3693839880.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30b8ba34-b0b3-4def-8b28-a169221d755c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2139df25-6c09-4136-b987-4c2d7e71e200.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04273d76-c04b-44e0-b9bf-561e30c837f0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0580d4c0-6700-467a-a81b-f39d3d037884.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2977d766-7faa-42d5-943d-ec65ef284430.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/247c604a-daa1-4eb7-9905-ab99dd7ce1d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20320517-d325-4a1e-ac50-f9af99975634.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2331d0f9-b2b5-4cfa-ba65-e221f09316f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d62cd51-82dd-49ed-8ace-74ba89dd407a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab65755-a55a-4971-b491-ac5ded038ab9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05ae568d-9153-4035-a5c0-33bafbf5b697.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fb08ec8-48b2-4a8a-bfba-834fcc728451.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/255f3ba9-89bc-4ce4-840d-43267635124e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b56d152-91aa-46f2-81e6-15d0da86f93d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21425cab-c511-4129-961c-ce5fc01715b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2abcf934-facd-40fc-a75e-0062441fd206.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bdf99c5-f857-4f7f-bd32-3c75921b9799.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ffb49c2-51e5-47dd-bfb9-2fe300e697e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/134cd460-818b-4ea3-9861-0bdc82b1226c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01671e79-a1a5-46a8-bbe5-dd8e514f7923.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf6d427-bdad-4122-9f66-7a1d119cf81b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fec0554-a0e1-4328-99f7-28146ad2577a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bae5ce0-3a82-4c56-9c6b-c9d601fb8308.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/123db563-c75b-4670-829b-11a29ff24617.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11a2a4b6-0b05-4d40-a34b-5afbb2ca53d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/248cb457-9cde-4575-8ac0-8f2f67c1fbbb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a6f960a-9339-44d7-b182-475c699beaf7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1401bb3e-566f-4407-a1ee-7ca6db789ae4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12f50cdb-7dca-4ef1-9f75-d36c540ea830.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a664216-c58a-4405-bb4b-7177d919e53d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a146de5-ee51-4ffb-a01d-a4dedc2e647d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b98d69d-6e7c-4d51-af53-c3fb16301c08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e1de52d-7796-4c25-b972-e2712fca6e7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3052367c-ccde-434d-9ed0-2d5f364e4b04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13e4e6e6-faa2-4bbc-8e1e-610623de994e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26043389-a07d-4fef-a699-079b4692f5c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/056aad32-f0ca-41bb-8153-9bb2904b5658.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ec28d4c-00d2-4370-bcd4-58067ba215d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14c7278a-a769-4dac-be18-69550e8c3d88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1049f4da-c709-42d0-ae4d-f957afd37a1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2297bc72-aba0-4396-8d7c-dbc7cdca18ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23e99d2f-b0c5-4191-a5fe-8bcece4edd5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/055ea522-3b80-4dd7-a757-5b21a8a440c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/255ed7bd-9995-400d-9bdd-67268e4a4a26.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30d9a35f-3297-4a8f-8906-ce6f95da218d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19deb1ca-cc39-47cd-8a26-762cc5fbeff2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e9c130e-1dc8-4545-968a-93522b43ac98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ec5b804-19f7-4c99-a8a1-feb091908447.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2badcdd6-4733-47ae-bdfc-412bb853e9a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e177807-321a-42aa-bfae-94028485c30d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fad54d3-e697-4009-84ad-24c5bd09b36a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/264607e7-a410-4519-b0df-6e5db64c373e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27e53b80-88b1-4b72-94fd-0eb7f1a38ced.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12c1a551-d9f9-488e-9454-125b469899d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24f93f6c-5d66-487a-a9a6-3bb4ebf749bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/011775bb-cb07-4a6e-ab91-d40c4dbd5c56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1095560b-dc4b-4896-a37d-3e8943ea1dcc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/252e33a2-395e-4abd-bc4b-b67e6e8e7fdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1189f742-0450-455c-8311-192da30f23b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12afd2de-39ff-482c-ac4d-a2456e9a0c0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30a5ec6a-ca1d-4125-acad-92d3474dc5bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/301bce09-ee2c-45a0-9e33-89763a7bdc61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00342ae8-ff81-4229-adf6-6a2ab711707b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1532c43a-028c-4d77-9cb0-f9d103988e7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22226c9e-e3a5-490e-a744-e20855d0853b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28c25252-860a-4f65-ae97-c136b577da2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25cff4d1-9a18-41f3-a171-6a1e7087a1d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03e146ff-fd62-4188-9ffa-c61b8f89ac8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20a55f7b-de8d-424a-9f74-4ec4551a5c19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b83d54b-af50-4c15-9d53-d3b1c5381678.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2db40eaa-a8d2-453e-9f06-33e1df95f3b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2088a33e-1f81-4343-a2c2-d7ee33da47f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a51b19f-9ead-4a90-819a-cdf9b308e2e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ebb908b-d5b5-478e-9a91-107476ec3cc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d88820a-7428-4d97-a9b7-1202bc43939d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28e20d9d-5367-4e90-b831-88ae6dfc3315.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f8923fc-241f-40c0-b098-afc1aa6deead.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12c380a9-97e9-475d-9e67-49e416fd6c00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aed4057-fb5d-474e-a41c-65c4129039bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b7ce0fc-9efb-4960-a207-023bf6039352.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf0535d-e5af-4773-bcb6-022bbc0fe887.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/296939fd-29fe-495d-a7dc-f7127240a9c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c767923-238e-4355-98f7-140a6111f1f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d135c50-4094-4984-a9b6-a55b955773eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab6ee02-cfaa-4d30-b341-6bea4d295901.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/215700ac-5dcf-4d9f-8124-4e7cde3788d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d43180e-3e54-46ac-be8f-2418dfdd8cdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ffc8b2e-bd55-4b3d-94b1-306e0e20a3dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ed63912-9df1-4251-8cfa-428dcda3a02b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136d904b-6dd5-4ef1-a504-a196dfbf73c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a64a0e8-b87d-47bc-b7b7-3d18cc06d0b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/215d4b0a-b546-4eae-ab7a-39b303f7248b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/291d3937-544c-4b98-a646-03868131a92d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237d16b3-0c02-47e5-88a8-a7e03a74a808.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d65f02d-cb6f-492c-a2fb-6cdb9d562824.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2919e9ff-9ae1-4a90-b9c5-2e804888f8ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/227356aa-6ad9-4418-bdd1-8723d81bf3d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d3578d-1e36-4211-871b-f2e9adb5cbd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f6d1947-0c1d-43fd-8c32-809f8d7da390.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b4fdc8e-82aa-4f1f-9ec9-6c8c33ea2228.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21d231c5-d903-4acf-ab7e-b7bc7ea009f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d9371c3-2f75-4d9f-8562-6f03aa576f11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237901d3-e135-4277-852a-86cba3a9a43e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e0efd8d-820e-4845-965d-8d8336b45c82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c00a132f-6108-46e7-a67a-77efd3d2d0ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/239cc56f-29a2-4562-acaf-3282e639591c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1378e3e1-496c-47bd-a79e-787ba14b56f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11f711fb-d27e-49fe-b028-c98e3a4814e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0497418b-3302-443f-aa7e-360cce158a8e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2492d586-92f7-432f-9116-cbb5e97f4907.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c2686b4-0892-443e-a18e-fc60817a7166.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10517e42-0a52-42c8-a3a8-d7e61ce9fb1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eda18e3-c271-4085-a599-92dda93b2b1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037d1b26-3dc7-48c2-b93c-214e7538c76d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ff95f9e-bada-492a-8e17-ccec1781b9e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d6243f2-28a3-4b89-b461-de17dd77f1ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23f6c434-cd8b-44a1-b8ce-621f6bb55e9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/142ecc70-d000-4629-9814-2a4fd0627d32.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/022a1092-db63-4f8c-a7fe-77019dd4c52e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0467d282-4548-4430-bc98-1c3dbfc96e8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aa20b52-2de4-4e86-a724-81c777afe247.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fe1b8d-e93e-4810-b8cb-19c59141c90c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04bcc451-d63c-4845-a1d9-68539a4b4f3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f74122a-a4be-4e22-a8bc-ea8e693dff4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/146d5e30-763e-418b-bb48-03c3348d9685.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/310a54ff-adc2-421e-9478-6f16c814aa20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bbb0121-c443-4b31-990e-c2837fb6f120.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d0cb523-9de7-41d3-98a1-d8fcd371e28d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265c655e-b97d-49b0-8b5c-83be37c0b80e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f92f9c5-0a5f-4905-80cf-5bb762e6465e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29923e51-773c-46b9-81a2-ac44e8bdf8f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03b16b8f-a03c-409c-8740-7e694b7d58e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eb07f02-299d-4c51-abd1-8d6f6486f5f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0460e5b6-4298-419e-a930-d9aab8c4f271.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf67143-007c-42e1-b0ef-24176e09a9cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0df38bf0-24eb-4e29-947f-02d95fd984c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14dab443-4e8a-40cb-8992-90b2d593be11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cba8c35-1b13-45d4-a7dd-9ef2ba5b26df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22dd02e5-5ca4-4493-af90-17178e558450.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/211b7ec9-80a6-466d-961c-66bcad202137.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/208db98a-049c-48ed-815a-5bd6f6d2b8af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05728606-b93f-4bc2-bdb8-9f67281f1d99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e3ffb5-bfdb-4475-81ae-f24de5e400d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01789dfc-da09-4460-8326-32c143e767be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c127745e-7555-4a19-8ed9-33aa32622c4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2017c617-7593-4996-9faf-3db972b7e7d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24ab4146-c63f-4a81-b996-5b9295e2185b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a70a918-bcde-4eca-806f-d875867a1a01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aaf98cd-8311-48b2-831d-02e2dda16252.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27016559-e694-413a-bc72-ec9fdb9c8bee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b89f974-3c79-4ddb-a141-5fdbbc09f20d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fd4507e-c4a3-432f-a8b8-03fe70f51eb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b96d291-2dbe-4756-9d6c-d23efcd863b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/307411ff-1d18-4fac-acec-bcf02ba27c0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1448e8b5-3a0b-49db-8ca5-28470a6a6c99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c14d9403-6e1f-4d9f-b278-6b7bc18cf3cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2acdfd2f-903c-4b83-950b-266c4a5a8df0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10b9be09-1b44-421b-9651-546d207e5095.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e93cd46-cdc6-47ae-897d-feeae8be5ddb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23601710-8391-47f3-bb8b-273bb4cf9c13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f7efeb8-fe98-4c57-b323-31f411914ecc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/211f242e-8f05-4307-bf14-dcb8270dda7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20952d76-da81-4bd9-a939-7a44145fb68b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/268c4efc-36b5-467d-a63c-b334e482fa05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21bd7ee7-584f-4b18-98ce-38a7b76b644d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/043f1056-2a3c-4301-864c-6b2720350496.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22569e21-9b6e-4ec7-aef1-359ff0cfd4e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/052a7efe-e167-4c21-bac9-7151f524642b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/259b099e-9a42-40bc-b96f-229047e01515.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1df4324-58ef-4f0c-b5a2-88faaf28955f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28a7cdb3-6861-4c13-91c2-b51ea3e0c079.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25d2e423-40f3-4c47-becd-e05908e3ced4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e0ad52f-7fd0-49d2-b320-f89198f19823.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23ae135f-973d-45c5-a879-604e30630c54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22b656bf-8c47-4edf-8e99-4ab9a195424f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26729371-ee9c-403b-a92a-23ee1bb0bb9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a8fe30a-52d3-4b93-86c4-3641493ada13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/264e5191-d134-4edb-aac8-01904903e7d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c10c617c-8be9-47c9-9972-60dcd008faea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30384474-2ef9-4cd9-813f-4c5559c18e1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13951087-5cda-44c7-9624-037c3ae8404f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2566c9fb-c0e1-4db3-a61a-88ee9e4ba7dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20cb687a-8d15-447f-8546-bff2f8f12f7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11592fdd-4318-472c-ae9c-6f3a54d17f51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b7d087c-a5ec-4f67-a37e-847c22663557.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c055f61-16ca-4895-ad62-d6fc946c9061.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ba09a39-3935-4b61-8119-266a0fa153ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02c3e45e-a066-4f4d-9dfe-c21c30df579b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d06ec84-c515-4b14-91a1-ede09d512711.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1acfe9d-3e90-414c-809e-72c6dc153708.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3082c117-cc8a-4bc3-8aaf-2ed602d0810c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cbf4ba6-5826-4726-9a08-0d2344d29a40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d9e106-c5b7-4f30-ad0c-dccf0f8ba09e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/208017c8-d1b0-46a9-9e54-7fdd2af71090.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2461912b-1864-4bcc-a65a-a34c01876589.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a89b8bf-72ac-4f52-8e8e-ddb451b33a3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2348e7cb-e24f-4b47-9e3a-945d1942ab5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/223adc8b-4ded-481f-85ba-f4b8ce619d7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26a068d0-e410-4b4e-a5fc-0bcc9bb4f035.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12986940-5cf4-43b9-8506-8046abc4599e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25988153-06ba-481b-9f2c-ef225ce2d420.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f12250b-7596-4a1e-a1df-dd18aa1f421b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d997b6b-b9f1-4dd6-ae12-7a5771e6e873.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e83f620-a0f5-429a-8d9d-50bc1de47c3c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f12f186-c7e8-4799-b351-e1f32ede9cda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/231a1bc7-7262-4330-ab24-ad777a4eb452.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dca4903-a4a4-48df-a8bb-00637b44ec32.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2021bb8f-9fad-4220-b7a4-73894f5dbc19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11921ca9-a014-41ca-90d1-deab38cbc348.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/133b12ec-d8af-48d6-8c4d-4cf3e92eabb5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/263db843-751f-4cd1-b392-548fe40d2636.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f6ca235-d1f3-4a84-9f4a-645f9b536672.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f55113e-db6e-4b97-853a-7e8f7e1fe451.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a83c58a-4ae5-47db-a596-1f3e1da52298.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24435118-366a-41d1-a467-e5378de100d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2173269e-6264-44fb-a0f0-9278e7e42c8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13b69932-7587-4c4d-b2d9-67d87f2767e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/258b9d9a-79c8-40eb-a502-d4c07648ed2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b6d78f9-6714-4994-9e10-4d5c26a1328d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21afe23f-2e32-412e-88f4-23eb4cff9ed5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1de5547c-646b-410e-88f4-8797db5da125.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e89f38d-5f51-46ba-b887-c17a6f1e3741.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e8e07c6-ce6f-4bde-a85f-d437f0debd43.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e36e3cd-cf66-45c3-bd52-83de5f78a2d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bc880df-959b-48b8-a7ef-4bfbcbf5952e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d1cf468-3791-40a7-8597-e0abb8b2d142.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d0ce799-81bb-40be-8e92-4b1783906cc9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/014f2256-b71e-4168-84f7-bac69852057e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad54a1a-4a7d-4f0c-aa33-346082668275.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/114fe748-8d32-4aa5-81a0-6035023038a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dabdb8a-c89c-424b-a5fa-d98d0cffad4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0efd119a-5eba-4c61-8d9e-56380651b4d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22b36c33-8e54-4779-9d90-c00558ebdda3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19c0c43e-a9f5-463d-a3f0-d392d8b8ef32.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/284b4ebc-64f7-469b-8b6f-79a9fbb964b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e38475-ba3a-40f2-976f-b73908861f3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c36091c-041b-4a57-b833-046c6eec605c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14615182-db79-42e7-9b05-3d65cea33d18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10018c2f-3283-458b-9f0a-55b39e8c29a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e33d9dd-2803-45f0-878b-d0e29cb90459.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fee9c7a-aabb-4000-93b4-52abd78efa94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/290132ce-cede-4fcb-82a2-69a106ef9576.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e28d63-56f1-46c9-8cd5-42f821342cf1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/248bc147-a52f-4b86-b7ed-2fffa2ec3912.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23a7109e-071f-4fc6-ab9e-6b7021c229dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d73fa32-ca70-4084-a5eb-952988afd789.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27de550e-028c-4e17-b504-a62305551aee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03866050-4736-47c1-ab69-d084d6561b9e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d88a37a-d8d8-4f64-b2f1-7288acf8d80a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26a937bc-a3e4-41a1-9a1a-a63506d4b49d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a5a0811-72c0-46d3-a883-cf2d4fcf10ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1863155-7189-4ff6-864b-6c661f7d625f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ea1ed2d-6423-4948-9a11-ed9f2132b881.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0459da81-0980-4cc7-82fb-4f50975cb52d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad688bf-adab-4e1b-9144-1f456b896726.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2af35a62-3a6a-4e18-8c9b-059a8e0fcd6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e3bf52d-b83e-4503-9b70-829b52d82269.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04c2264b-9e77-464d-92e6-0c6cec3a2393.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bcc5188-113c-4c20-a0bd-f1c19f985a45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/299151d6-ec2d-48ba-aaed-880503b013b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1285111b-557d-4f58-85d3-7a1425c7602e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12b9bab6-2905-4567-a9ef-235f5bd2f08e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/273bdee2-1dd4-4dd2-a29b-92a29023f6d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24769263-7a02-47f7-b514-88ece09802bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30ef1119-d75f-4504-b472-a8fd612388aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ef4f132-0eaa-40fe-b73d-69636e5ded35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e585120-583c-4d50-be9b-8ffda0f933a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19f44b85-fe93-4489-a98b-1aa375b3923f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22f308e5-7711-4b49-b86f-bbdf1f9c9bda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19e76f7c-b673-4b33-a385-49f0bb8e4558.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de94683-fb0c-444d-be13-7617a09a3247.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/010d5095-acc6-4210-8753-eea1b0734a76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14aac35d-3205-4861-8bc5-eb37d90f8298.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0382a252-b1b3-477d-bf8f-15da22a7f19c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/276a4c77-21cd-4b77-b94d-5172a2ab427f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/15443e86-b8c9-4fd2-81f2-390a6a0fffa4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2da4d7c9-ab43-481a-af25-ec20ca66e746.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/313ce9b9-3fe4-4354-aea7-707eee7db3ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aced5e8-cf72-4f1f-a8cf-707de0a1ddca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e2f3c5-3315-46cf-ac57-b1ad8bb32f9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1010ee15-41a3-4533-b5d9-d8f26946160b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c3f2cc0-4c64-43bf-828f-8d52f7c5a442.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/014ae099-4762-46d3-a3b9-7fd25e3337c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29731a00-7f71-4bf2-b44b-1fc6e531dead.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/046d7152-9614-49b3-8883-ebb9d3782205.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29dfd9c8-ef99-41aa-8f1b-c24848b5a73f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28dc9ac8-e269-4834-8483-aeddd22cb878.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fc5d25d-d8ba-4c44-be7d-a665911d2191.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dc404a8-607e-4afd-9c26-d788d9950a93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b044e43-4650-4d92-a439-dce95a2c1c88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e1dc40-c72a-45bd-b754-d6054da69eee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0db02017-96d4-4aa5-ae23-4af0587cafbd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/125f413a-7779-4838-9cb7-9efe81270b01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e0c806-3608-4b47-a1e9-f6f0c7787eff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12e96e90-f62c-4b4e-8c3e-2680d75a5afe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037f16ff-46b6-45bf-b737-74072c46fab7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a90ed6e-a6ab-4a9b-84a7-ac57e76fad42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11704a5a-ab04-4e97-aefa-f565a5f1b07c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24e94313-04e5-4550-a937-b67d1eea6796.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b6fd072-e92c-4d97-9277-5cfb4d1551b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1e202a1-431c-458f-8aa2-c237c7c69647.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/220636b9-b401-438a-a894-529918d12af9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c3c0726-8394-466f-a410-9e990b681fc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf2a8aa-8bc5-409f-a87a-37c99afca3d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b5f9923-0ee5-42cf-b6bc-5d16ac75e9ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/231abfb6-8c40-43dd-923a-ee88d540ef50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f4f2cc7-367c-4cb0-828f-0140bd7f65a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/132d011d-f83a-45ac-853b-a2c6d169d6f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13aad543-dcc2-4083-bcc6-60a2bfe5c9fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/128b0c29-842f-4eaa-bdd3-b36102d2062c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cef9e32-622e-4703-80e1-c14460e9f716.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dc9fa14-57e3-4650-813f-550bb9e7c455.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/261dcd8b-8a6e-4f8f-8ecb-a36460733b1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c0aad4a-7618-4254-933f-17c5d64331e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c18ad1f9-b19f-4a34-aac2-853fe2ec6946.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05a43f7e-f0c9-40b0-b705-8753feac0e26.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04fa2f57-3f81-4630-adda-b3d7529adb49.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e56226a-17c4-463b-aa1c-2c0297e15b63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2470255f-acf9-4842-97e9-37f7937c92f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0417f292-9baa-47d3-a4a6-9cab52844cec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/243847a8-928b-4fb9-a7e5-20ec95e0445e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2159f35d-f7a9-45f8-aeb1-133234ae1914.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0066ba32-08b6-4ac9-8d5a-abec69825d53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2479b752-baae-4fbb-8b35-5a43464f1188.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c19eb270-ac17-48f3-bc22-9ba6fd38ac52.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b9990c6-dd10-44e4-9d5a-5701a964a57d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241b5fc6-2e5e-4b62-a433-a15e16e44627.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20c48f19-6618-413a-99b9-9dc396f2bdc8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25c8710d-d4dd-4fb9-a46a-303accd58ac6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe340ae-ec21-4b63-af7d-75ce858e126f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302451eb-3ff4-40a4-ae2a-e37ebf8b6d4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e34f8a5-9ac6-4ecd-adc2-8bc821c7560d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13a2bd8e-dc09-4a5b-9e2b-40f67b284d69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cf84380-a3bd-44a9-9c4f-b5d51203a97b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfec16e6-874f-4083-954e-7031d559f05e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1281ecd-6406-420a-960a-f60c0a2be14e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14411c90-6935-403e-9191-ae1c51abee67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ee4c769-5436-4c14-8d88-231c2dabd8bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13798bd2-64cb-450a-94f2-a4d1134f66a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23649ef2-dde7-4019-a356-75c7f064dbc5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29ea4ef5-f115-4961-9fe6-4c286a78fe82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c03b0ef6-cea0-48c9-94ab-cd028740b31f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/252437ed-a4e2-4743-995c-65a4bb133996.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd29296-2fa9-4708-bea7-2a3ea286723d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00dddf53-486f-4098-9a5e-b7d0b8ee2b8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10783fc2-79af-43bd-b5d9-dad212d58976.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10b73213-154e-470b-b4c8-8f8ecbc5d756.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f2faab3-bcdc-4f7f-a8a2-d4e65b93da3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0483d8c8-2d15-4ae0-8034-4dca932e8ddd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/035a2dce-5d55-401c-9038-3fc93f291a97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/105b67eb-bf68-4312-b594-cac7d97eed16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30956603-11a9-49cb-a5e6-8b8ad18b9b13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ec545af-e606-4e3a-bb84-bd8313623b5d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1d3ec0a-8dc1-440c-9f5f-f8de703418ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/057a7499-4836-44ef-9490-56b002cd63c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2afe02a3-06da-42fa-b68f-3e9c921e5fb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c9854a0-cac6-411b-8579-986e03ff2e96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/048a68fe-87f7-44a2-953d-d00651cc2605.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f62cec3-0d14-4a7b-bed3-230a4a0b9b3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02d9c45e-5f0c-4823-90af-51ff9e81ad40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22c7b69b-d9a2-4b64-95f5-3cfb86bdec22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/021d0bd9-560c-43de-80de-5efa191f3251.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22033047-8ce0-4bc1-9d2a-02397029e334.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e6908c9-dfd6-4394-a886-40ede98af0a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b99188f-0dac-47c5-b5e9-9588f6ac666c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/108adcb0-0301-4db1-ac26-3c38e8fd388a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e0c4ae9-52f0-4bec-827a-2824d13a1680.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/311bcc53-3b2a-4744-b34e-0b4275bfaab3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d01a9c3-e3fc-48f2-b78d-6c82223d40be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0ea61e-f034-4e86-a968-b87f4743afe1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21f097aa-37d0-4340-a132-85e80880f5d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e334daf-a272-453d-8d3d-80d9f31d59b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/009c7a22-8272-4acd-a1ee-03de8d420b11.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/035c8891-656e-4422-82a0-a53406dae9ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27d3a0fe-120f-488e-8cb1-4dd73afa755c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28df490a-1851-4c46-ac1a-54ec9617d0d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dd0b928-c0b6-47f3-a1a1-b538e058ed13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/270e6509-5f4c-448d-bb55-822343311cb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e5012c2-11a2-4e7d-9dfc-30a6e6ad887b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d5d8ecc-3ee3-4c9b-bb86-3f614a079585.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a6741c4-d9b2-42d8-a442-002e60565e1e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f5e2671-46e0-4bbb-afe4-3b91a018548a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fa0a5b1-4be4-4bb9-a4a7-1d9989afdbf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/274def79-ae29-4b96-a222-4489e79d54ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2578fa2d-6cf3-41d1-b233-89587b1126d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14d4b142-29d6-4656-ab1d-17b84816b2c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f7af3e2-497b-4e8b-98c9-f1a26ea995e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/004b28ac-d188-427b-8a21-10501125f596.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b8d026f-3989-4cd6-a4c7-4ed8fb8887d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03bc0c5f-af69-4a4a-8f4e-e1301e0f9a4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19e60907-948c-4a82-9a18-4c45440723ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b134dac-2562-4ecd-872c-71c7c07e83f0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c2071c-dab3-49b5-b120-41926283e5f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f29db26-5ee0-4f6b-a03e-0da08fdb0a3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0322a3ad-3e24-4e6d-8f24-b68e3c61d88f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29c237f5-8fba-454d-a832-d77fba372312.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c649fed-f0d1-448e-89cf-543708c35076.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00330f7f-d114-4eb2-9c6e-558eeb3084a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02b7bd21-0ca3-48b0-b98c-dd85a7ad1c0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2705bbd9-4563-4bea-8d96-cc69a7f45ddb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e03e987-0877-4c41-93b9-a7f3bc74aec6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f4562a7-ec65-4a86-8cc4-2fd276a62332.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f66deb5-d400-4f1c-a848-8610a00bf272.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8b51ba-9258-4d8d-97a8-6d41d45d1a30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24aeb8f6-24bd-488b-bef0-2e8fa59418fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02256e17-eef9-412c-a03c-39e2eb2e6392.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21ec1079-962b-46fd-a489-871c2cb3bf32.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ebf08b7-83db-453f-bba8-9abc4caaacd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01137316-5474-4e6e-ad95-46e50916da83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11286989-850c-44c4-adac-50a7d762b77f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2425f877-b1f8-44da-b8ea-adeb5155cc8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d2e49e0-8fae-480b-aaa7-eede76cf9d5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c129ed85-8cdc-4505-972e-661a36fd9234.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1eda3687-bdf5-469f-8fba-5000c559f48b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2975a1ea-26b6-4aef-95e8-a2f914bcb087.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/306046b1-6d19-42f0-8cde-98c84f923afa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03772765-8195-404c-8bba-fd6dd5563213.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23ebfb85-2312-4a8b-8879-3cf48a1e8920.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/148243ba-ad33-454e-b7e9-a63f66affc8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3140ad27-ac31-4bf5-b74a-e2742ba630ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0460484c-d06c-4156-8690-89124ab751e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1410b58f-f5df-40e2-a0c5-09c53760006c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2724a1d4-4297-4df3-9b50-b8b9732c13c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c036f4b6-e060-430c-8ded-55b7f09ae43d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12aebd0f-4ff9-41d0-8e99-00dd3cb8911d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/306f9134-2913-4da1-bf7a-36873b83d5ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dec8fb9-78a7-4a04-902f-e44e2ff328cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30494056-3e98-4094-a546-1f60650a73fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237724a1-b2fb-48e0-822b-5059d04f912e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a0f9d8a-80bf-4999-a522-efb5e7015c31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b2d704b-cb66-4bcc-afb0-4eff225d620d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ea7fd2c-4275-4c7f-b9e0-d1aa3fc6be8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23414dbb-910f-4d9d-9c4b-e47d6d0b4853.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05a44577-fe08-4581-abc8-7be37bb5476b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0feace69-7c67-461f-9243-63cab77dcc18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29597a3d-9fea-4da5-ac6f-8b8be9e84e8e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d2d151-2a5f-4e1b-9666-56a4e51ce95a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04df7618-aaf9-4979-94d4-2964151de11f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2efb2937-67a5-4e5b-afca-9e42be5b7c87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22c5cde6-2fa8-4a61-a313-17dd471b2234.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26c07956-e243-4d83-82ea-b8da718b0e53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d90bab0-ba72-4126-9c2e-11c80a9b2e21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1442587-d214-456b-8a4d-59431600cabf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1868de8-4f38-4bcb-8c58-d647cfbe1bc6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03ae3399-3ca3-4e4e-bf4e-5e5d57dc20e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cdd3a1a-75d5-45bb-b8b4-0568cadd3f2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1214d5d3-879d-4002-895f-413b03be4289.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27bfde5e-6542-424d-b772-f92e99e22faa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/129cc66d-d78f-4122-a439-933268ea5c00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/028b7794-c17e-4bef-ba97-3b9523bc1333.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12b35131-8b22-4d87-9c36-ecf05e265952.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10168b52-ed7a-4714-b6d3-751797713501.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13a34765-bc0c-408f-a76f-46f07cd08009.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30ed769a-8105-47a0-8d1a-4692f5df5fad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1118eb28-0e48-48b8-b352-2ab443454392.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c4a669c-c52b-40ab-a687-feda3e7d603b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c54b11d-abf4-491b-bfe4-2ace6abc5458.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ddba8d4-f2d5-400a-90c1-56bc987363c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1320b620-85f7-41b2-9dc7-38009839ca19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23b9018f-cd9c-4a09-9ba2-5ac887639a7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14856277-5e29-4ee1-9b7c-261802d28b0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e79f233-54df-440f-98e2-ae7ec3d55766.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/108c7abe-fd00-40f7-ac41-eb16f820b24b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01119341-8004-44c4-9537-0e47c4b67689.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c9dd5d9-c943-4b9f-a885-a1f8f5da07d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f9f2b0c-bbd1-4afd-b0ba-ab3d84fab4c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e6738e9-cda3-47a5-9975-6c5dc4ca6c63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e929adc-551d-426c-a25d-2d767ccb0c18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f33f831-62fa-432f-9836-b5b18624ff4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01478a83-71ad-4319-83b8-d0093bd22dfb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23f2d686-d5a9-4ce2-89b4-c0c3914fe3fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26ea7ee4-a364-4269-91f9-0fdb782616b9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20020bf8-2fda-4ba6-b1d3-d573c8956069.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0479e08-bd63-4dc3-8334-a6e3b5469987.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a4f617-41fc-4abe-bdd7-ea28778a0f36.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/239801a0-406e-478a-b289-794a895fd23a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04627a72-3f26-4b2e-864a-01da3abc0cee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c3ab9e3-7ac2-437d-bd23-6d46481937e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03bbf8a4-f4a1-46a0-a64a-6613d875f80b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/298c9dbf-f493-4991-9f9e-1eeb3c570bed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a322302-f652-4697-b332-626c59333d51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f0f6887-ec83-44a1-a49d-7c7e127d51c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/239d9e47-c755-4aea-96c9-18b963878979.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2111488b-6c55-4f89-9ec4-35b265b36b46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22b9929c-7e06-4ebe-b926-d0cb9fac9847.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/104a97b7-5dcd-44b7-9cab-4fffa8e46f45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0466a624-c075-4db1-9e03-f58d09bc27ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ef27e91-b8c6-4f53-bb83-1bb7f0b9b933.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ca69eb-7835-4948-b9a3-7e85cd11966a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04d90834-6551-496c-b0f3-3852797454e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10dc2ff9-550c-4370-88f4-2870e57bf8fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a941593-8eb0-41dd-9763-da1a1c874196.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dc3dc9e-6ba7-4e2e-9323-b81ec65ba210.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00991acc-85b3-41c7-a397-bdf925c3697a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/113a0978-a57f-4989-b3a2-09af6cfac9a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a37de22-589c-4773-b97d-8334a2d674c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2de21def-1d19-4204-8189-6c4ce33a5aec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/150edfae-719c-4c35-8947-b226130bd3e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a27e565-b0f5-4419-84b3-744712cb705d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fa15a86-f25b-45bf-a4d8-f0651d3714a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c76c5ad-25c6-4987-ab4b-95f425a9dd79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e54219c-2697-4e07-ae76-da8f776130ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/311d7a49-5733-4dd6-9332-e046bf107f8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2da69f80-c59d-4e4a-b7e5-1d631ef4186b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fe112ca-575b-490e-a266-b455a48a644c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e28e969-5c77-4046-a1ea-7f7f70d616a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22ff801d-23e2-4638-8297-b2b6e40b6426.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bff10284-7ffa-4e7e-bd19-49a61b36bd94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2772133f-a612-4e10-9f64-e23aab41a050.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24ccd4f0-d9d3-41bc-a346-229319297346.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1002ef3c-7022-4769-9dcb-498738fcad24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ed5e143-7932-4179-8625-c66ab06aea09.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b9b510d-85f2-4c82-a742-955d2f4fd17a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/134f9eac-3a92-4e07-9aca-b4585e384c19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5269e4-e471-4aed-b421-01fb2e42f64c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ecabfca-75b9-4874-9b30-3a5b1b42b2cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/222b5868-4ffe-480d-9441-2e7d793b5049.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03727d3c-2f77-4bd8-ae6f-002b30fda71c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5e747a-0a10-4691-bbcc-af76e1c3591e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1429fe63-8d51-4017-9d9b-c7030da74621.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c5b8f7b-d76d-4a2c-ba14-42325e4e4a39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f23aad3-357f-45cf-8d7d-a40f931ba4f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2020cce9-96e5-4e02-a806-c2350a25c430.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02693444-dc0d-4ac0-8cd0-cbaed1844da3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ae109bf-47be-4645-bd8f-003dee84da0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/230422fe-3a39-4bdd-ac65-70572f14451c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e097143-6cc3-4a55-ba45-0f60075a42e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2824b990-3060-414b-93b6-40e2ca9067ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f787925-7338-489c-b565-df8a60253141.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30bfb4b0-f852-4ae8-9aff-d89a6987facb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04514c74-98f2-4f73-b39f-869e762dbb6d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11a04d2d-4f12-4876-abd3-baff3797e66e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24c58628-ca25-4f93-a67b-259ea25c0bf2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0d6bfee-4fae-4c7a-b229-ea9a69005cd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ede87d3-9d0a-4244-84b4-1d8faece7a9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3056555e-cd00-4d98-b02d-43f3097a6c3a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23a04792-8458-4eb9-b31a-7afa8862a808.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/139bd334-c207-415c-9fbb-7e597d559c5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24df3a5d-14be-4d97-bb7c-96c274141e6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/101f8cfc-a28d-4622-ad18-65214f2e5441.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/219d76a5-44b8-4e95-b651-d638661b89ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/291fafe8-0596-4080-93eb-410225f69d86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01528f70-440c-41fc-8673-e3ae6464380b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/312d9fbe-dd26-439c-a2d4-8db9075893cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b4e5de2-dfbc-48ca-91cd-90bc723d1d3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1b2f938-49b9-4fe6-8251-b6c90622907b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21f202b2-fa91-490b-9e48-8cb38078a7c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2376e0ed-344d-4492-897e-f2359f9881ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e9192f7-a68d-413b-ae3d-fa840872f1ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f08ceaf-0815-4e90-bbf0-5252bdd05d29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29762b8b-df1f-4b0d-ad70-fac6d7fc4d76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ecb147c-cd0c-44e5-8407-d77faae38ad8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02f29ed2-889c-4766-8e4e-853d8f71a12c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20d9afc7-a8aa-414d-9e44-fce8775b0dbb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23143428-e7a1-4bc0-bae6-0192c009c281.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bfdab1f-e19d-495c-aaaf-f64872a99c5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1145a218-f3d2-449f-a436-8ed5d86ec591.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2357ad7f-fe2b-460d-a7db-8d58c027d4c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21f523b0-7213-4d04-94d7-4ca690ecb69d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22669933-5680-4544-a22d-08f7875d2d3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/290c3c3c-8864-43a7-894b-52edb4b21957.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c09ebc4a-9c22-4a8a-b584-0f90d3fe92f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24014088-d2cc-41db-bbc2-ba74161bb8ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dde0556-d227-4e56-a703-7791fb290b64.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/134579da-ee59-40a1-a6c1-3d84b9dbbd31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d8ecb46-de17-4a5f-9608-fffb14f695d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1337e45e-cdf2-4950-a82f-6361c62dc78c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30b596fe-fdf8-404c-9d3c-11341fd91ee5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b07bf92-761f-409c-9f56-d85fd0b33a43.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ff9e61f-1666-4ea2-b649-66ba3d71377e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13f6df4f-9b1c-4d25-ba93-f45df7f0e4f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f0e3cf6-b2cd-4e6b-834a-38463ad413da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20770b3a-be8b-47a8-beb0-9254fab636c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24eba2b6-584b-4a79-bca4-e4d38b240b5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b157958-b600-4aa7-98d6-f711a333d3f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2745d0fe-c25e-46fc-b9c6-05ec96f9346a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b3dc649-9934-4210-b03d-b4282997b4e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0147a753-be33-4c13-8cd7-9cee88fffcf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/214d9224-97dd-470a-abd6-59d756228452.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a41d17f-89e2-4155-8588-81fc046d75e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28df756b-3b5d-4ab1-baac-de295460d632.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2abd6efc-20df-4dd9-ae53-2c5f7c5a52eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d000250-5968-40f7-bcab-8b6cffd8ccb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2783eed6-66d6-4ccd-8c3f-eee6d2c1e3b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d61f2f3-c991-4eda-b960-27a5949fecc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2402e4a3-ff44-40df-b64a-c9e02473bce5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/247fa183-7953-4108-8a4a-a0411c879540.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/272c0574-55f6-48c3-a450-a794a1328510.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b5d4e8a-f205-473b-80b5-abe2ad83d715.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04b5819e-f756-48ae-824e-ca9c92520bbc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30451f0f-6692-4633-b234-94ae2b5960de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1276733d-ebf1-48c2-b923-1b1504b08f1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10af7d7a-04cb-4805-9ce8-c1944f8558fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b8a53ef-bb2a-4325-9be9-4b8127d0a398.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30388b30-3486-4269-b050-2f48d973e358.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0005d3cc-3c3f-40b9-93c3-46231c3eb813.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01036427-2c3e-4a79-b472-2c7bca1efa86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f2490f4-3b65-405c-9dbc-04a22a6fb0ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0da3ddb-a443-4865-812e-7bd7584a1723.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b00645-a0f7-4ac2-95c0-e3ec119d4183.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e3497cb-00c5-4333-9d35-a27fc9a49829.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f7a2d81-5f0f-454c-b35d-5da9be2c825b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04026d9e-895d-4b87-9d73-3d6fb58e53a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e600572-801d-40be-a6aa-627baad344dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21e42e94-8d99-43d6-8e06-e795cd00f69d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1f55e7e-4065-4dc0-993e-a7c1704c6036.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05372f6c-91ef-4471-a35b-42d76f07267c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fb19175-ac6e-4b37-a78a-bfc15cbe4ceb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dcf2fda-af28-4473-8ac3-47bb30d332a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a266b8b-cd95-4d58-a018-f26f12d34f56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f18d832-13b9-40e9-9797-a6433c742296.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8d5876-4253-4d03-ae2c-7809182b0ec6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ba33562-3b2a-4d4b-9a8d-2da5100c2a9d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1513dc09-fc73-485f-8f71-4f2c69e15421.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13467426-284b-443d-a3d8-8ae4fdb26b0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d6fd98f-b65e-464e-b492-16c047447433.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a38a2eb-9a5e-479c-9d60-40f55b4f4f36.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0123ddde-aa60-4364-a3c5-2aed75bba3dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2049f0d6-5c21-4fd8-a74c-997e096e71af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2094874f-2524-44ca-b3c5-6c4fc574625c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dfce29d-5d4b-4b2f-a248-b5db56f5a072.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1db263b-5d0e-47f7-9093-b7ad5b2a4d2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f24d017-75bc-4914-9dc0-2b72f931092e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11433605-429a-49c9-bd20-c0b6c4b528a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04ba9dc3-9cf1-41f5-9e4d-939bd69c97f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23b839c3-ece6-4daf-9b58-c347c598d42f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c031834b-2296-4991-ac96-8495ee9a1231.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f27caf8-fe15-47cd-915e-18999274bcb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14ae73b5-7ebb-45d9-b345-b2f4370894e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20e75ed8-6388-4d51-87f6-eaf92eddca29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2928bb0e-4840-4399-aeb7-6240de938d84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2745b4cf-67c8-4f50-b4d5-9b44c073ea61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0377791b-ae5b-4abb-b6ae-ac8582ac6f33.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e3c8f06-379f-4a04-8b90-49787811d9a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0619d50-76c3-49cc-af20-3d2779c96ad7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22585477-ba03-49d6-b16a-9cddf05e6b66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2276b258-5b47-4c7d-ab1f-5b2bae4a8fc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30045189-e13e-4fb1-9814-f79d9ac703dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e74967f-8e25-4916-8133-b527f4df6dcf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/149e0d38-8887-43d8-97e4-f38f72353350.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b3445b7-61d4-46dc-9328-1a45fee158ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bffc41ca-8869-4740-8ced-4c361eae015b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2145b66e-129e-411c-9ed9-b3c6f69ee20c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04df4d20-f843-487e-911e-8f68113172ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2efce836-c584-4c12-99ef-399c4b08a894.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a926cbe-1654-43dd-949f-47bd7ca95bb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fb178c-3ca7-4a72-bef9-8ba442535dff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f322913-eeda-4f18-b112-a9da608c5a3a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00271e8e-aea8-4f0a-8a34-3025831f1079.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a966ab3-4029-4cd3-aa38-70a2f5f8e6ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/106db102-2a51-4785-aab1-9ab08588bc93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ec0543e-a664-4fdb-8cc9-c96d20e975be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f07ebba-bd60-40e6-869e-ab5e47340f54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/277d7499-67f1-42ed-9e74-9a4d5f212685.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1526e12-28a6-429b-98e7-8c6d634a9818.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/001b0c51-c7b3-45c1-9c17-fa7594cab96e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c01eda59-a25b-4995-8f4d-863a1e633826.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/219e8604-5624-4059-92c2-401e528484e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13690e09-b664-432d-9e24-98f8c724c145.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30397630-0cab-4ce3-a038-13fa7cd94b71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0068492c-2cc4-46b3-9ac5-ccb80fc10c96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241ba006-6d87-49bc-a6b2-768a0669450d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27ac2172-04c3-4735-ac40-3a9317a411d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c97b392-6cc9-489c-a379-92ab76e0df97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/293bc2b2-e005-4a64-9869-9165995f0ae2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fbb281f-71a2-408e-939c-12c0a473db5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/003dba79-1b1d-4713-add8-d72c54074f8a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10ef40b9-f61e-4eab-98b6-759754cd6e00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13e0c176-e18b-435a-983b-f81e763837e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd44b3f-975b-410c-97d1-a9f964d1f596.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28e124e0-e71c-4444-ab34-3db1a5f7d1fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c3c30e0-b03c-41a6-887f-61a845afa751.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10090118-fe34-4225-bf51-62894ecb4994.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b8b82ad-d820-4400-96ae-6da8eb78e90f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fa60d06-2183-4145-856a-29600b8b0013.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b406b6a-82d3-46c3-8016-b81fc5e555e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d9e909c-bfb6-4360-b65e-d69a3fbd0ba6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02ae356b-c39e-474f-908f-0af600e6b03d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28209e9c-6bbe-4832-842e-a5b040ce6364.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab5988b-9234-4219-b416-bad02bc5e338.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c543fc5-9506-4853-8643-d9f9b5e8b318.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23fef1ae-6472-4def-948b-5594056f2b79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f8774be-65d0-4583-b51b-3542b040ad30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/258163c6-f895-423c-83e9-d51c0063619d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fabf2e4-de44-4ff1-9afd-0593d4501ef3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29fce23c-0ef7-4d05-87bb-b14d7b15db69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0074c6c-78a6-4160-8c71-b445d9967065.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e18279e-0068-4ef2-9c10-8bbb6fc9272e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b346292-8750-4d11-a55c-5c375bd0f882.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2348cc76-684f-406e-9e98-c14ce61c3143.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13dca3d3-01e7-4ffd-a9ab-66884a07309d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2424527c-3327-4d30-bdda-4df08ba49679.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ebe84cc-f15a-485a-ab05-e42c8f8d2a1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11df5b6f-d134-4195-9cc0-6273e4be67c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02d4d116-415d-49cb-91bc-98b97c973ad3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/212ed8a0-fa74-47e2-a34a-9f264a65cacb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30c8b24b-4a43-40fd-9d71-bb2eea4fa1b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03d837fb-4528-4e56-bf4e-58fbeae187bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0490b4dd-cb7c-496a-b0ea-12244a055d57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10ae6129-dc22-412d-924d-5c15f93f5408.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f9ea025-6ead-495e-a8e3-71682a2532ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/110dfcba-05da-425e-a691-9e17a593f69b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02fcdbb1-2ff5-41bb-a28f-a0e5d9a83d51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/271afcc2-a753-43cc-8560-2e4d246b1502.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04785916-0ae2-40b9-bd71-1698025326fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c62970d-e0df-4078-b95c-cd3a29fe0a05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a25154-88aa-4f08-b04d-372533f281f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e36566-9754-48eb-af84-456454c076d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de684d0-d7e8-4784-80bc-b112a66425e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ef98861-e289-4e54-81b2-68f2812bf7f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e0ab721-5b64-424c-b96e-1f945717e28b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/206955df-8dba-4529-b71c-46daba6ddd00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0444a749-4fde-46be-8202-bc2ddb71d5d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab7a206-d635-4e05-99c0-8ffee0ed4e7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f165be0-0173-4a7c-8411-9b9b29e4f021.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dbfe0c3-ec45-404f-ad6e-54683f28b52c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ed254c5-9431-47d8-b10d-3b5f4593e65d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2254a9c2-16e1-48e8-b7c7-1688163da7c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237e9d10-fbb2-4dd0-a808-999a37cee304.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e4b53e0-0f1e-4005-9aae-97dc9717409f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ce4b9f1-7d93-49f4-a856-bd9308be5eae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/300ed19d-d398-4e56-b131-555f3a9a4017.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30deb7c5-090a-49a7-a00d-a8f65ba96af2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d2e6cd3-a646-4cad-942b-59fcf226fc27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f1b462c-3e97-4d58-bb3d-1eb43a0ff323.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ebf816d-3d54-4354-b6bd-9b84894f008e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265fc72c-f5f5-41bb-ac15-7ced161736df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f7a058d-0e7b-4273-adf0-41bda220208e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/311107a4-d6d8-495a-bf9a-5bb83cb0ea56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0577274b-1c00-4a60-b8ff-322c8a01b2f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ee66cfa-c3e2-4328-9182-1b14b801f5b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/019bf13a-7fd5-417a-8959-ba79e9b9f875.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f601e6a-80a3-4bd8-bfee-d00293058572.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/017cebf7-65c6-4508-bf78-14eb93001ab7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/138e2c27-17d0-4a32-9ceb-ee3401c12613.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/310ec695-c874-453f-85b2-d02162fee735.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b64c32b-7575-45df-844d-dd466c698eef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25f1a1b5-e9d1-4f0c-a3c4-04093cf99a23.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23ffe96d-ef6c-4a8f-914e-12754fe689c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/042d37c9-b83f-40f6-8d8e-85022c7f3a14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a1f9904-f010-4210-9371-cea55daa52a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2007ca99-a785-4706-9f73-8000f3226c28.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2489f5f3-8df3-464b-8f1a-8bba82c506c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2990c6cf-38a2-43cf-8862-0be71938eea5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e99fed9-1d35-4c12-8f24-7d2be66e2a38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2536f5d6-d9c1-4ba7-a63e-ce053b28b0e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fad6fb0-9611-4fed-9095-38b20d0c7511.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cfcd755-5c79-4fcd-9562-0b983f77d0c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b49fd25-ddc6-4e8c-b04b-5e61402caeb4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/047e8da3-51cd-4ce3-8fd7-b954844c6acc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00fe1990-071e-4f90-b8c5-08fc94ff40e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d896bb0-111c-480c-b2b8-eaba5e65e826.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e863460-f754-4139-8ffe-8742cb4ba145.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e2c8423-ba80-47dc-b590-841c472cbc27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1a1144a-91c5-466b-b707-6303b2dc5500.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2836c671-b555-4af7-b1c2-25d73cb113f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/216bac30-0d82-425f-ae57-eb6c2fc01271.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22eae506-4f84-469d-85f1-b2e96eee30e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eabd32f-ebe9-4f0b-8307-3633f93a0e3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/021fe6f6-dc70-463a-a2fa-bff41f74af6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c14f305-1d44-498b-8cf8-cb760ab6a633.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2115a65e-319c-4ace-af8b-0617af31646a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fa0788-1b88-417c-b49e-a290b66ad5df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22a5a7ed-41dc-47ad-bf9a-660eeee035bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dcb24a1-d06f-40de-80ba-20e44f233395.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1342a8a2-ca78-4f73-93f1-01c07b298c8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0340ffe8-feef-4b08-a1fa-328bb093361c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe3ad5f-28d1-4d32-a67d-e9ba8188cde7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/273a038b-faa3-4d39-a818-3a565489f744.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05aea639-1039-47fa-b497-e071d0f6cb17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0dd281-9888-461e-9b45-cdb01eac4a49.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f23c765-65b3-497b-82e3-baf798c4ad31.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1201ab83-0037-4d57-acee-2b46d51286b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/107e772a-3ad0-4187-a01a-3d209c1434c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a65e7f7-d13e-4dda-b680-be66a4db6a2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13659019-299a-47bc-ac85-25500b625fde.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/287ace28-6719-4027-8d17-c41e0419cc88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19b8517b-24e4-457b-96c0-a457e30125bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d3e1e8b-f6d0-4289-b5e1-c9e992ee1225.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21e738e1-8847-4c7e-9f80-62212d3461f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f2b1aef-a998-4a84-a2d7-dac703bee754.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c77fe0e-f3d4-4845-89f6-b03ad7ad5138.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ee5e42f-f14c-4af2-b04d-631c27674dae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd7a6e1-bc2b-402d-801c-0026d21e81bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a94cdaa-c1b1-49e0-9edb-eb1ae4ff4aeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ecedf16-2d48-40cb-9dc8-04eafb81dd39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fb4d7b3-b133-4c57-8657-f3176e0db110.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cf65c37-b3c5-4b10-a252-2808d80b2a0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cc993a1-83e8-4e17-80a8-90c79117df6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/267147a0-2320-4a54-85e8-a3950f0672b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e3d4b94-9c67-4a3b-9805-389fe00addf9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/032d8361-e8b5-4e8a-905a-9fae58f42398.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/148f4436-e979-47a6-83a9-3a48325718c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/260a7b23-08ed-451d-bd0a-ecbffc7c3d30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2698f88a-e222-48fe-9488-99a08e517b7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c11aab-df3f-429d-bf96-2051c7c74320.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d4ee901-841b-4693-8200-76d4cb1b2482.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c12a8dab-bb32-4383-9ee3-bf2dce0fd20c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24845f34-a0db-4bd7-939b-417364bd0285.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1df8070d-4a40-4be9-b01c-49ffa89545a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2082f53e-fb13-4401-9c23-476582bc5b19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14138a9d-0919-465d-9030-948442b4f81f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f83b12a-4c13-40c0-bbad-4f5392e38f59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03055987-3303-429f-8979-cecf701707e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d7b2783-ee65-42f5-8e43-82e3dfafe1c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd95a7c-354c-4d5a-a950-af113d04c15d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/295a47cb-b808-45ee-9162-7e6e755dd064.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3090e21b-706b-4ddb-b730-a5276b953bd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20214557-cbc9-45ec-a162-15b8ee795702.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ede2e92-4ded-4086-8303-4b7596617e0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12e74970-6a35-4aa1-be83-dd198f15e68a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c9bb237-596f-44c5-b756-4bf50b1d170b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d5f9a95-1a11-4471-be50-b6dabf02e310.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fc6f60b-6a29-432a-94a5-a466eaaa91ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/144fcb63-98e1-47a0-939f-2a4b1bf9ac07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e85807d-4f11-43eb-9bf8-deecfcf79961.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28b6f49b-3660-4836-9c68-e552fdab7917.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d29c5d7-cd1e-4fb7-896b-c55b69ca6c96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21a34cf2-823f-4699-8286-43931ef708cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28a52994-65a7-4fe6-aa5e-adc0fd4535e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b54e5d2-8c8e-4b8f-8128-ab0fa4a7744d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d53e889-3c84-40b3-a52d-e6e6be105dc6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22193d3b-ae61-40c1-a5ea-4fd26a84c60e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1defec61-9293-49ff-81ae-7246c77d489c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02b7f2f0-b8e0-41c8-9cfc-83c69d202c67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28072866-534c-468f-92e0-ea14b79b9421.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0254cbc4-8fb8-4e07-8bc6-430d337e66a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/142126cc-d94d-4df6-85bc-a980c18013b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0041fc67-793c-4129-a952-ea3fb821b445.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5202c8-c08c-4d3b-9131-4697062b76b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25ac0f55-37de-4f1e-abd9-837bb8ff1dcd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0cdf524-c836-423b-aee6-65afc46567db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ba51181-8b66-457a-9cc5-e7895367e175.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe85e91-636e-469c-b4d3-6ddbe2f361c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27065d7a-fe14-4bfe-8ce0-5151f3f05275.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c4ebbdb-3186-4f09-bf3c-0fea6a085adb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241008d0-9269-4c06-b905-074c6ad6c84c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f5d4203-5328-4461-b007-14063909902e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ec0a41e-2a1c-4b4d-8737-06e8373c415e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27e74851-45bb-46f7-8412-defe6d91f4fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1470e7f7-1d45-42c5-a81b-18fb9e8a7af2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/048a59f8-9022-4598-8424-f8b0250a2e2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/151ab287-f641-4c96-b7e6-628bccf84c15.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f329fc3-bd14-4643-b98c-0bd2a3a072ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1d1a7c9-94b3-44e3-9353-3ec35fce7d70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d153b8c-bfca-404f-b6fe-1d26a4d47740.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bffff3da-0b19-40a7-af3b-e832bf9b45ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d6ecd46-1683-46b8-bbe0-2356622a62ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/129c5c38-17a8-4318-b118-a0e3232da1d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ab87845-c94e-42aa-b64c-8a6d880193e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2363330b-a7d8-4f19-bbfa-f09b15dfef0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f3ce812-db6a-4b53-a351-ca1c061c045a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2737456c-aa47-4bff-a3ce-389f076dd8a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c07ea5c4-ce0a-4f94-bcfe-64c7399adb9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14fbeb03-cd8b-4d53-bb2a-40e08aced390.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5e9649-6635-4f85-96da-1f25e96b2528.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28232a23-415f-4f4f-bef4-248f5e875438.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12ae8142-dee0-4385-a869-859b3e5d77a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30c01a73-7be5-49ab-8774-bf090f053d1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13264410-8b62-4fc3-8e95-eb0088863a24.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ca6eb0-bf2f-46fa-a45b-6cb0870dae2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c816e73-2729-4c33-8f2b-54536c4402ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bacef12-1a74-46f1-8c7a-3ea5da506a42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1130022a-5b49-4d2d-89d4-0886343b5bad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21dfd5ca-35cf-4159-989f-734ba8c37ebb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/003fbda2-ba55-4714-a03a-83f15bec19e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d55280e-edd7-48dd-bfce-7cd44ecfb3f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bcfac7c-1aff-4643-b0b0-627f5452bc4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0086a7a6-c663-401a-a908-378e87ebe45a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/034bda9f-cd72-457e-8dfc-e7ca6634fabe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bacaba5-1a0e-44f9-b654-c384aa466ea8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c097f0d-c690-4bb2-ae19-cf7cf08a4192.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f1505eb-31b8-49ad-a6ef-aa0e94eba496.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dc3618c-1e5d-465e-915d-725b292cc8a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/144b6550-ebe7-4241-a467-932d53e8f9b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/233fd25f-9705-4e1b-befe-a25f5ed68c82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30867665-1918-4b21-b3d4-b9772a918fdb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1492be6-e6aa-404c-8f37-0468aa65f5ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f166fe5-26d7-421e-9c42-4b2e805cdb96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c11a41d-b819-4a69-9c77-829045dcda07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fed3ad3-93c2-4700-b297-451313082bca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2664366f-4f04-49e1-ab20-19b9173f23bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e62c8e9-ce2f-4958-b8a0-f426e09c1381.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f9fc03f-4ee7-41f8-b072-3c5f3f4e90e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/138273ef-6107-48a6-ac8c-dd71a725b45b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1150e4b2-a651-4125-81da-bcaf67bc1b95.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ae5c877-44a9-4aa1-9f18-297599d90342.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27a589e8-146b-4a85-91fb-8c27f529bb1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b3a9b79-a622-4834-8989-affac9f77f8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265dd221-9049-4bca-b5c0-4118dafa55c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2704fcb3-7b66-49ed-a5ba-ea20386c824a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11878fd5-58f1-4dd0-b171-7c40612befb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e26ac7e-9271-4819-a86d-6139d6ceedb7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ce56b7e-3a64-4014-9cdb-694592f7db5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21346b75-7877-4ac4-9c07-3ab45c2c4a7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28278841-6318-4065-a93d-47b80ee8482a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfed1172-fef5-46dc-8dcd-ba436b3ae518.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12d54b89-35a7-499b-b505-6ce039fbc82a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ac5642f-fbcd-45a2-863c-bccd1090b6fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26e6a647-3e28-4635-a0a3-008f359a673b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/006be30e-1295-4053-9ffc-fab6b527e7d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/208e3daf-18cb-4bf7-8325-0acf318ed62c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241a8008-8f3c-42fb-a4f4-4041fe0a14d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/120a451e-4b61-45e2-b417-cde8bab08d7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05ae73a4-cf3d-436b-b5f5-05cc25c6e9e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30357021-6800-46cc-88e7-267c5c9fbaa2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a0ad45a-78c5-4c3b-8190-677ad836460f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136feda3-a969-4a76-ac47-9e72a43a1af7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25f9f418-7ea7-4603-9756-8bc3ffa17f7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0eabd79-0f88-4db8-b515-83a4c5a9ffde.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e537ba4-d7ba-468e-8e7f-6a20432ef64a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0ec3097-a14b-4ee2-9547-c0d2532f2e62.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/028fad21-f2a0-4778-8ad2-fcee826331d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27f82dc7-5f81-4236-a9d9-089fdf1518a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fd63c75-dff0-4bb1-af53-4def325d6a01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12fd215b-2803-4ceb-b4ef-0a87e0367195.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11070900-23ad-491a-9c16-fb4dce0091ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb6532a-ef0c-469d-b85a-d1e6a311d5fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c15f29ca-8127-4be3-adf8-bda02e398575.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26ca1b4d-b59a-4933-9d80-d732c06ea93a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cb404ed-bb53-42fd-8d53-327073e317eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00f3a73b-1801-43f7-992d-38338ec58a90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24b01fee-8258-4952-9b06-75a5e245f8e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23c605e4-a488-4406-bdc5-55be617b17f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26a8c9e0-13ee-4c48-924c-b7a7fe0ba83e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2804f57f-6026-438c-b910-3f11c01fe2f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/278d3470-9e21-4a07-a946-f6b684beb751.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a2cae39-a625-41b9-a817-8389fdb07799.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22a18f60-4e35-4bb8-8b22-235a58b93abd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bcf1a2e-c010-41ca-a15f-c0e3aab1fe51.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03fcfa7a-8d70-437a-ad1e-7172023cbdeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2feb78d1-e0e0-42d5-a7a8-ef42e655bcac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25cd9c6c-01b0-4955-823e-f582c2fe3654.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d4413e5-f7e4-4835-9b10-53a74aaae5c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bb2c31d-af87-45e3-961d-5cd6f2639119.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ddf7620-8dbf-463f-a485-629c5fbfa5af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0343df14-527e-4f73-9a56-3fef4b0104de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28359f7d-723c-4907-92b2-7db519775716.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e6f8c38-40cc-4e14-b6a4-644b792362a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30cd501c-1bbb-4258-8f4b-526e085f2353.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e7c5923-3979-49d6-b08a-35b8d201d3da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aefa92d-c179-4ced-8006-0df6892abf17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25807932-ae56-4b41-8d11-6c7eaf18b81a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0df5618e-90fe-48dd-bb45-09ee59203884.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d0c417b-8b4b-4dfe-8740-c96056359379.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/129459d4-fbde-469b-b038-6f5fd9ab05e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c23cf15-6954-4ad0-895b-06e4d4090095.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c01261ad-12bf-4ac1-8621-96881a939fd6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a60be9b-3772-4533-a9e4-a714669e76a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19c92c92-9605-49f7-9793-acae3dbc713d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26cd4988-ff71-4d30-b36a-99645c022f90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/306e457e-bc71-465a-955b-f8e6b8f3ccd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2db9ca27-e965-4bcb-bbbd-708eb66625a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e8816a-71f2-44f7-9ae4-ecf542b18c2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27034111-0229-4ea7-8696-c8d8b92c2658.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ffb8eee-5a79-48a8-9f14-eada75c26c19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0181dc21-34be-4d57-87d9-74d91afc2458.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302cedca-3fa5-4110-b1ac-8075af374d81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a4e1cc0-16ef-4d87-8766-256ad794a8cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a4491fa-a9d9-4b89-8f90-1c84fc8d9642.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1422130-230c-4c57-947b-f441fe987edb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f7cb40f-fc3b-4778-90db-5becdbd5129f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03bc2ba2-2617-4c8b-a0fe-81b0a915d066.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0143f05b-f5f5-4147-a9e3-7f525e45a2ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e83ea2a-a296-4a5d-8553-e2a0a4b5f46b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ef1ca84-8256-475f-9753-a32b5b17245d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2865b97c-a54d-4029-89e6-e25725770eb4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aec6d89-6abc-4fd5-9ed2-a5126b7becf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00748fc6-3e87-482a-a0b4-ca2b0a7686a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d5d0fc8-314d-41bd-adfd-52f1a1e3cc5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2598af1b-4bfa-470c-95d5-3ba472f033b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ba77bb5-5808-47b4-aa37-4e4a70786b97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c172bbde-f7f7-4e65-aeb9-98684feddbbd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10fc4fbc-0aad-447b-a9bc-88e840b409bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05904708-a1b1-42bc-996c-b384d06c3efd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e8893e1-6a7f-4927-a15a-7fad5ec6cc66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c64542c-4e31-4d4a-8a31-a8947996ca98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c15132d6-6486-407e-b07a-2077eae209ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/008efe9c-946b-4f43-ae07-942f8d73dcc1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1257b585-ec7b-4970-bee7-8a565f93e1e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a3fc253-6d7f-48ea-ab20-377272cd1bda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f14988a-2252-47ca-b6bd-a7561ef5520d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d907148-70a5-4848-a0da-6f40473deef9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b5610f4-b3de-4184-a658-753de6e7c3cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e805c68-9cb6-4305-914b-5a0d5b60097e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cef9f7f-788f-4d0a-93ef-e82bba91cfe6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1a2fb00-a536-4e07-b462-2220a17968a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/018b01e1-7582-4141-949d-0c53d8f6806e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/262aefb6-740e-4af6-9ed1-e2f0a11a5aa6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cdee6d0-ba84-434c-9d0b-8c570c6d6149.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe13598-c02b-4155-b189-be9922bb5f79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2996eb94-ba9c-4d89-a9f4-531a15fec52f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11b77b1f-1da1-4803-b21e-b784500b5155.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02431455-505f-4ece-bac3-b4f494c65366.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f4608af-af81-4482-811d-596d7bc7844f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c6c9370-cb38-4745-83bf-12fe68142e20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/248be5cb-5079-4ba7-b2ba-a0ff1062fff2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12934bb0-bf43-4ba0-ab27-718c338f2c63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02305324-c307-4811-8932-6831366047d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14d24e04-ff6e-458c-b26d-9c87f5789a60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f8ab482-338a-4b66-837e-a6c510e18607.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f235782-b322-4685-b644-e96dc480f0d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/294b4109-6ea5-4136-9a67-67b6a929d285.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a2b25c6-2334-4a4f-b038-44e48caf4512.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a322909-9ee1-4f88-a601-7160852d38c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aee50dd-0361-46b7-ab70-6011e7c6c5e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/244b8582-b2dc-4873-a03d-582656bf6fa4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30a4932f-d7b3-4727-b0bc-72605b530913.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/243c5673-c107-4cc0-bcd5-6d5bc8a1a8dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d7ecb8d-02e1-419e-b924-6dbb2e4bb5ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1248dd39-a0bf-4926-8636-86740b194a4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2572552f-b279-4e2d-b242-cdd09e5add7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ef94893-26cc-40b0-b6fc-abd9384a3fdb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/110f1159-37d3-4a37-b4ca-5df42ae6a851.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04d35c6d-2ff0-4e0b-be77-d477f99bc825.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fb7d5e-8ed4-4746-aac7-008b0b8ea700.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22a1fce3-ad32-40a7-832b-ebcfee4da711.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21ef32bf-62fb-4868-b7a4-f29b21a5ede4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/115798c5-2cc7-4ad7-9619-15f95d6dda9d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0549f9af-5fb2-4ec8-ba65-5c5c8cd79a2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22f41c81-aad0-4bbc-aa2f-60897f6de3c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b92d9eb-97ec-4289-b4d4-b3383eb3d397.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05aa63ed-15bb-43eb-ba2a-08ebe2029c12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00860e86-5b18-4694-a20a-0b47e842a453.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ab3187d-b284-4779-8192-d4ee7f147c47.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/245a6216-ef95-49ed-870e-fc415d3b96cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f9d153b-7f89-40cb-92c7-2f7a7d423547.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c0009ad-af3a-47e9-afc8-ccf64caa6597.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c01ca942-bc95-408c-9c71-8845a817bac1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ca9751a-bbbe-42aa-92b9-ab90d3ecca25.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f35b2f3-dbf0-465d-9ce8-4788b89bf412.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25d088e7-8415-4028-ab4e-bf20f27a81d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0092f442-ccb5-49a2-81cf-b6ca3f829a53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fbd203a-c02d-4406-94d1-e0caae0df5cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24bfb6bb-0e87-45c1-af15-b861a0d392a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/149c1b80-e02e-4d04-b2ff-7b4fdf43f9d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f8152fc-21a3-488f-b8bf-9d2e29436fb7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1143ff94-7f23-47df-b327-9c1dacd3f0a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23ca0b17-47b6-42b5-81e4-980e2bedc996.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c05a341f-e8b7-438b-a8d7-146dd746a2aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02724047-234e-43ea-8418-62ab74f05668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1eeecd10-16a2-476f-8d81-867d5480bf01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/285f57d4-98d5-4d75-b91e-cd21ac0ef1a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30daead5-b84a-47ad-b055-41d887b2ea38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21208bec-714f-43ef-b145-aa3442f844a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136a7586-db1b-427d-b375-573b2c602424.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ea07d0e-43cd-485c-b205-0da9897cd3f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22dc1729-86ba-40e5-9ae0-2a9e8e839f4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05afbf1d-d526-4280-a9fc-70052aefca40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e8359a0-6313-4908-9971-5682d02db185.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2314c2d4-5cce-40c0-8a26-d3e85f0d859b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ebc2dbb-9603-48b0-8cf1-20c087cebb4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3138294b-6fbd-49da-b606-f0c4f765d9d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3118dca6-06f0-4e04-9274-e75b78b3098a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29319e8a-52e6-448a-b10c-0bc81695f71b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5ee3d3-cc8b-4d90-8c50-d55b9ce39d6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/140ebc5d-5a15-4948-b698-0a4b32d12a93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ec51b9a-c8bf-42ee-af6b-26081365724a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20163ab5-99f3-4bc9-b13e-2d8910370eaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25741edf-8a8c-4c66-88bb-7ef68f34dc77.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02718efb-79db-40cc-9f03-4c0a667f3ee5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c04746e-07a9-425a-962f-77373cd87c87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13e17582-bd0c-41e4-afd7-af95d6c1a29e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d281227-f786-4bfe-a4b7-f900a2f3d23e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e4e79b7-004b-436b-81fe-0fe90f29fb65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d832224-bbc0-46f7-af50-27546292dcd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a08b9a7-5254-491c-835b-ad3121765eda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10276fad-8690-4e43-8221-dd01bd77ce7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2185b766-f19c-43b0-b91c-e31e0589dc4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11912f95-56ea-4747-8062-87e455a6c5e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22ab3f86-c9f0-42a1-a594-ad0c1923c32c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1539e414-553f-48c1-9ce4-7c452176e1e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c130ee0e-7bf6-4c8e-afa2-8b27e23f4c5d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d378bda-1278-49cf-b87e-81bbc4478c14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b948f4a-5131-465d-9f27-67ff15370499.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/304d9302-cbbb-4026-89e7-7df7da41e422.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d4a621e-f58b-4a3c-876b-69ddc1c20167.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fd5b190-a8a3-4ba7-a0c9-8f79ef3bcaec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10e2ab61-a66b-4f5f-a104-13b449d7db55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0537a83a-46eb-4b64-b8e3-43ede726cebd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e8707e7-338c-4a66-bc14-5fee9e73bb14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01767b2b-8915-47ee-9bb8-3511492f7df5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/301fa177-ac7e-4d1e-88f7-b6e51d54cfe8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2289fee2-698b-46d5-aaca-00818824598a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12a58875-1f8e-421a-a74f-510991390b39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f4cce56-c99d-47db-b9f6-2c95f4555c7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0232e608-a7af-4af7-a104-32537c1cb26b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2df29894-5303-4050-9b98-a3e0b654b464.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21cfe0df-22f3-44c5-98d1-3f807433d26b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20a1f88f-a3bf-4c15-be35-96a0b6334b82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24512e9e-8995-4c47-89e3-0dc3dd031961.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cd2cd73-fc7c-4707-98c7-af9f35494c3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30875d7d-8fb0-4055-9df6-700d9c579452.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26a56a50-4306-409f-9b63-79e8c8ebba41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302e3d7e-da8a-4a3b-99db-df8bb659a770.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd20e1e-d56d-43fc-a605-e5cd8b88ab00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/014a7eee-8245-479b-87a9-a9402c66502b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25c98e9d-637f-4e6f-8ad3-f9f85a7f7590.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/252386b6-2a6c-4e45-98a7-9af73a1f9b13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d97ff50-d3f6-4425-ae93-506c6168e704.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28f51877-4cf3-4476-af15-256738626d14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21c8c4af-d6cc-45d8-adf2-0f975d79108d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e40c8e1-dd94-4ccf-8bf1-8938377704df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/201508e7-84a0-4df3-ba82-87b6d200acd3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/268dd16f-f9d4-4626-897c-2a8939a73ab0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bdcc1e0-076b-4dea-8054-f33375e1ca9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2552caa6-fad6-4ec7-8e7e-31eff2674150.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a670192-9427-46c5-843a-943dedf6ac83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce66821-8300-435e-9d63-5f5aad217c3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d0fa7b-282b-4a7c-8a26-f0ffea5fe47a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13b56d83-b11e-4bf3-82c6-794e870a722f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0048e89e-f88a-41a1-b79f-ab4e7135627e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fb8908c-5485-472a-bffc-08a7f42c18ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27c8ee6f-a9b3-43cc-a976-954c5caa0c26.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f12de2d-3ab9-42d1-b68c-1d9af65c3e76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c11ecaec-2b8c-46c2-9883-8e491f3ea835.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d2860d1-9550-42e8-be36-036fb4927bec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12bc974e-550d-4ce2-84bd-467733c8f388.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02b42e7e-d0da-43b7-9a54-458264099d08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28fb9812-830e-4f7a-8750-02005a3a68c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28913461-bfee-43a8-a955-c42ebb614a7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10c7dc33-2d86-4522-92bf-044ad1da5260.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f646733-0892-48e4-a5d3-1bf84c892052.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ffe2cf7-5d2d-47cf-b5ec-399afe023b0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c127904f-d321-4d79-b02d-599b73b0a734.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03dfd775-0cb4-4ede-9eba-e01df8a84965.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd22ddf-e3c9-44a8-8e4d-c2e3aa4e0c98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f3f043d-d8f2-40f2-a163-aa0f499804e8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ede50e8-25e8-4dd2-9f5f-df43f14227f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/143cc465-80b8-484c-ba71-ad362ea8fd90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/032b9367-1ce3-44e8-9b74-8f3e2203e8ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f39e12b-8d3b-40d4-9992-524392018df0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11506857-bfbc-43e7-859e-05d233e6b3d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/229b1b99-4f23-4a1b-9cac-2890d07abc96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/280181dd-e918-4818-98ac-dca13221d9f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0133cd26-6796-48d3-a092-adae7ce07d61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/107d9dee-2c7f-4a58-8bea-7b0ddf4885ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05069fa5-b964-4141-bb25-4f4b7307708c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/111a5edb-45b6-4ea1-9f78-eb00e3f9d357.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b367d8c-05d0-40f2-9c80-7931f41ec71c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/057e7feb-bc0f-4a17-bde0-3b9c20727e0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04994871-0d95-4104-9e60-9573851ee997.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03858c3a-5c32-4503-8888-58f2f601c1df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1450d78f-57d5-4c56-8ca9-a2147258862b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e45e69-0bea-4f2d-a0d8-c84c641b9f0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00763ba7-af28-4893-a403-08490fcdd69c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f9d65d3-5b6b-4abb-856f-791692e229d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0daea621-2fce-4908-9551-0e219d760c7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28e03bc2-1c2e-4c4d-ad70-1f0d6b74bc3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/031cc0e4-9e42-4bfe-9d0c-fb3170cfdc2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d0aa49-43bd-40ae-a66b-0832b9aa84a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ef5b66-0fd7-49d1-ae6b-5af84929414b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d969212-d171-4fd9-9a7d-0109a72962c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/139b2baa-9c95-4ec9-8d91-1642144834d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/102b3230-f521-48e9-807f-7f219d6778e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10182b23-2bc4-4b89-9cf0-b1338504de35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1212b24-683b-4b34-9470-a3ec54564e88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1384372f-0acc-4216-81b4-9acad2562301.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/047033df-5509-4b5b-9861-351b9a0bf4c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e0ee049-6ece-48ef-9399-689fa7ab780e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f1bf83e-6cb7-473b-9f27-f1a91cc8d116.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0146516d-b739-4103-8cc6-bb2b494e1d5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/297ef567-0d06-473e-831e-6fe0698a2d66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/278800cb-2add-4fd3-83da-144b126a455d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e2be23a-9aab-49a1-97b1-b2cb0062e6fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ea32c58-de2a-4085-bd7c-7b158bd681c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/272dd20a-8806-4d9a-b51d-8773d534f453.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/271dac12-ff4f-40a2-8d25-f89daba97f8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25ff4a6a-2ed1-48f6-9b00-448d559bccfe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0fc732-7f83-4ff0-81d4-dd7ff590da76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f9718e5-6d11-492e-83f5-c924986b0bb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f042317-fe9a-4ac4-b5af-6771e6be78f0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e08f9cb-6e35-45bd-9f8c-ff85f76c70b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13efb148-31c8-409f-9230-798f5825155e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a545588-c287-4124-88d1-7a17032d5cb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/153d9186-5292-438b-94ca-ab9a8134f4d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/312dead9-f2a0-42c6-beea-9d0ce85de61a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12bc1490-aec0-4825-9ff2-3f1ad9e873c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12bceb5e-333a-4119-9bf9-e3ef59ead596.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dbb9a07-6add-43f3-a58b-4f607789b235.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2995760c-95b6-4c79-b6ad-c15316de38e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f60de84-91e3-42f8-84ca-587f07437f48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037876f4-0e2d-45c6-8e98-b1cac93b9066.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dc83f2c-c930-49aa-83f0-e9ed0aadd976.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28ffb122-43cd-4ae0-8b00-880213e68361.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0db01d52-c8d4-490d-bf26-611a5a7616f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dc8dfb1-33e1-4de6-8e8d-25f203605b22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c0cee97-fb9c-4921-979f-e17a323f6d6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cfc1c2d-5de1-45f5-b7a0-d225a6bf186a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/140e2cbb-3fc3-4a5d-830d-1709d1745efe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/021ca4f1-52fd-4881-85cf-c57dfa74566b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21203843-f47b-4757-9a9e-832426cd3938.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14c691a4-e50b-4780-8511-a45510f5d6e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2544328a-3855-4ccc-8aa5-90283213749c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dcb73d8-07ab-4158-9324-a00bbbdf8093.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04596200-fe71-4b08-8184-431a24a6c8b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fb7f9de-9fa3-40b9-bf27-7cea953b6058.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dfe304d-a5b6-43b7-969e-754c6ebd7747.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/107cde4d-12de-42ce-ab5b-abd6a2c55c2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03fc4207-b6f6-4c97-8d55-8f624ea91c50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02347c05-a319-41a9-88b4-59ef119221b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c6ce588-8dc1-471d-b464-6979d44d3ed6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/204d03dd-3faf-4c16-a432-a139493c2928.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19b7fa0a-5d7e-488c-8431-7872f838ae74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28a86852-7fe2-4001-a2f0-4a1cee459f3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bae405c-b6f0-4cc4-ab7a-e09362a7ec07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22c8f77a-022d-445d-8700-a3ef34fed777.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037ed56b-77ae-4084-a0d3-26be1d8a46dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d15cca5-bd2a-433e-9dd4-8f427e81f31a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dc57d64-67fa-4de7-aad4-b1f37f504b96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ba6e94e-5020-4bc7-9d9c-eddb49f496af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1937034-f8a4-4a84-a69c-213911b39907.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1de362d4-8e6f-4d76-9c4e-9436728add4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c07625f6-dfa7-44c6-9dff-4702345444f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12b438e7-689e-4f9a-b4d7-9e95ff3db2f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2811018f-f803-4bc5-8a76-955fa316380e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2180885a-f469-4512-845e-deb6f1ec9317.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2927f7c8-4046-4df0-a5fa-7444cf69fb57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c3127dd-1cd3-4bf6-99fb-08dd4fa7b852.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25f09d92-e440-4e16-aca2-5baca1a76c89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bc0753f-a2c9-41c0-a251-a7c8ae3f9292.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0c1e77e-5af0-4775-9136-342345d901de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d851001-237e-4889-8978-51a7a3826742.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e74f5a7-5959-4b0b-87ea-18b0fa308e7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f68a1f7-8f1a-4ff1-ae74-c85ff1567ad6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f9f2955-cf07-40e3-9624-6d84654c9fb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c54a904-21a0-4cf0-8bcb-5446fb4f4c6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b824b02-93a4-4656-9625-356752bf67a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116e1a13-ac55-499d-bcc9-ae9e0bd450d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ce5a05c-3607-47c5-93f2-5c3a559c37b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21b0c6dd-5278-43f6-ac94-4f5c443a2c45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/112e899a-c3bc-46d8-831f-2b8c8cdba2dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/242bcc3b-ab55-4f12-a414-00384ba48e9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ac1dc25-bf30-45be-9705-b983eb92974d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02c43b6e-b603-4d06-b579-3287b7eed859.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20970cf5-ca04-40f6-ab83-9fa5b3aff9aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf62f44-4770-4e2b-89a8-7ea1b75b5116.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c141f676-7ac5-4231-bdb2-aea92772eb7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02d0f144-bcc1-4258-bbf7-aa2bb3408ecc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2acddcaf-1121-4c5a-8891-b70a7b5b3648.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1424cff0-1e19-457c-9f48-0237ca60941d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d5b9d41-4d7b-4539-8f63-0bcbb56d3d59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b1cd33e-9235-4e8d-a27d-3b7f44c74d22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/025fd656-c29a-478b-a2f2-cf68a38faee9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12f430d2-d15c-4191-be63-5dfc4df179ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/272be76e-0270-4c10-819d-c32ec14ade4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0996b19-8cdf-49b9-9865-d906fac2a434.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b248d55-f15c-44ea-997f-47aeaa7adb91.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12564587-f259-4659-8aac-2c5cd7e48a89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2be405ce-d581-4e02-bb92-04c5145697fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1eb459ff-72ac-45d5-8ad0-a777456c5781.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d53594f-65b0-4d99-a5d3-c9568c8c6b56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/31158084-0b59-4f9d-8309-d7254c6ec915.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/114131f4-3e2a-45cc-b3d1-0876fd9a5ed1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/016fe150-be99-4c53-96a3-ee0eeec4a62a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/035f53cc-065d-417b-85b4-b4a5a7243758.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d8b333d-e302-4959-8c72-efdf18a6680f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8a687a-d964-4e5d-8f30-55781771936e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e9e19a-611e-4e9d-9ab6-04ba563c5916.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a671ef0-eac2-4166-9ddb-4a4312b9cc77.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/280933e5-47d7-4015-ab8f-d6c12a846b9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30f45cbe-06c1-4d04-aabf-89c46b85b12b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e96c423-33e6-4881-bac3-b200a4a9eb94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0076e39f-5189-4751-8274-da6df4d5e429.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aa7e767-f038-4a3d-bfca-6f442941ff92.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/235ed51f-2494-47fe-97a4-fdbefc03cb07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1307fbf9-4930-4087-83d0-fa703b22b114.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1270a024-bebe-4b8f-8702-f029f51d532e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d682b94-2c9d-4bd3-8b59-bbf22616beab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f4fbede-6f84-4ee8-a363-31fc39ddc6cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c822697-8fad-4661-9978-94d8a22371e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13cd4766-358d-403a-9b39-d9909e79f78a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c04e3eeb-80ec-46f1-81e4-4186ece11b3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11b086d8-f29b-4809-ae14-747dfd3d59b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d70844f-b516-43f7-8bdc-a6d56b5c81de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fc24a0e-4768-41d3-baae-711077d5bcc0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e8b1c9-e4c4-437c-baa1-1019d4ad3c0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26e868a8-8364-4d43-8c22-736de9e5863b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/261c2f87-c4e3-461e-b6eb-e9a01dd3d4c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1376ccfc-b223-4a54-b682-6fade7355657.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/147ebca4-2d12-448c-871d-8c16f922b6b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd9a32b-6d8f-475e-8e3d-e223d39bee3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14f7d431-f66f-4098-a9e3-b94d84e9a5cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c929ddf-362a-4701-8501-2ee7f6abed22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12d84104-ce46-484e-9440-70f51b908923.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1de2a7d7-2601-4d9d-90db-484bd3f41f7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d5f84e-17fc-482b-8bc9-8d35c6fd3f57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2da5f2e1-c85d-4a26-bf2b-cbe8fe8e3594.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12d17a68-14af-4b15-8b8c-10dd13630f2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfff5d71-87ab-4530-beb9-ff017b6160a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d85d9cf-0cf6-42aa-9e18-192a5b295b10.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a6143c0-f2ea-4858-9983-87fb497307ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23262e9c-3767-4beb-8e3d-0d1d50df6d8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0efedf3c-8bb9-44ed-85da-fe85f53cbe6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30dbf3fd-feab-4a36-b42c-c044ec13a9a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12848ba9-abb4-47cd-8168-469d5455e9e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a4d2d2f-34c8-42cb-a432-9c46bb7a8988.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/295e7fd7-dfcc-4945-a8bc-b7bfcaea26ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dd0b293-1563-4cf3-ae1e-fcd4232f852c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e44920-87d0-477b-ab1f-9d21a533595b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e6c2b9c-a7a1-4e6f-81f8-2e6d07490c1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11978f36-7caa-426b-8dd9-1bf9a6acc522.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a37027-3bb6-4827-8d70-cdc74d5f40db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22e960f0-e303-4fe4-9d3a-a7533ad6552c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01512575-81f5-4de3-9645-1bf3050dced8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0107acc8-bddd-4889-a18a-c54449c6844a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0a24e30-4b10-41d1-91c7-a089985d5512.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ef2bfbf-b68d-4981-8dc3-b5d7b54ad55e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cfa3844-c593-4893-9d82-29f48e32b864.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a6d0d55-8031-4e17-8c1c-d2023eb0a99e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fcb8bee-5859-4cea-8320-7afdb6b8e293.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/290733ef-ee28-4533-9547-6bcb964145a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d1c672f-5583-4dea-aa29-fd0f79d579d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0270091f-28e0-4bdd-bb52-26e26bdf9f66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d942bbd-470f-4766-9813-80281a270f38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c0af194-eab2-4f27-9e00-03d7b9575ff6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0051fc13-694d-43d4-bbca-5a185f90418f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3121b0e5-ba65-46b8-ab40-49f94fba7078.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b00dd0c-96b1-4222-a67f-c2436cb0fd69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e696db4-4fe7-4de8-a4ae-ac4cf76e2c03.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ff6f390-1e4c-489e-91ac-6b18448a08db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05b0b6e5-e66c-4bcf-8516-4f7c052651d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1382ef46-6101-4abf-9a4f-ad02c58edc39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/240cf4ce-a2f4-4790-b9ba-4b99511554a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/012e4288-deac-438d-af9e-a3cb7478ed7f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ad7f18d-fd3f-463a-b758-7c6ea837f758.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/290fe4d8-0960-4ff6-88fc-67341176c6d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11aebbf7-0f90-43a5-9358-b9373ad80524.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b1aa227-cecf-4845-9743-a2214c911975.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0452d6c6-4693-4ade-8b20-46e09c719ada.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c8e073e-7fcf-4f85-bc54-5b8e03cbf6e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cc5ea9a-77a5-4d7f-9b54-9cc15c496730.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1c73ab1-a934-4ef5-b362-7da3c3bc4970.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/218b656e-0c88-493c-a567-af93166ec37a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/294f447e-a691-4c34-9740-8e2554691d81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd6e7a8-7a16-4bbd-9da5-41c657c72d35.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c16a0985-23a7-450f-b10f-f5514e9ec746.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14e3ed14-3efe-4de9-8c95-46824591482a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb59cbd-8343-4cf5-8851-3b247238e525.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cbfbfee-12ab-48ca-a355-2e45c579275b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02eead22-409f-4d50-ae60-e8996493a111.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/249b1047-ece4-490d-b903-5e457981986a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2622cb49-48e6-47dd-9031-bdbf4467ed74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/15250795-72a1-49dd-be26-1c6211ab8d6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1530d383-a296-4ad7-bc85-3ccc145e9774.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2969eca6-35c8-4e4c-8ba7-bb78273dec37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/229bb456-7c14-402a-a61f-fc2e5aac9729.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1054025e-ca58-40ed-b2d6-bce5ba677c97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13ece116-aee5-48ab-abce-71b194f1a5cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29d145f7-bb28-45b1-8af5-3747341e1701.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/143e47f2-3d11-44a6-a9eb-b0aaf291db55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/032f8386-fd1d-4ffd-b12a-263a4ce113ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c04c5925-3428-42cf-ac98-9096a0ce8c1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/287cb6d8-3d50-4664-8d95-417d9b919bd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2616069f-24c4-4d3d-8b76-c5564686eea0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2433372f-a327-49cd-836c-4db1494a96e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22c2a3d1-252f-42bf-bf1c-f51427ab5640.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20ba7cd0-8c70-4a8e-a419-e376ae06e810.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2657b0a9-63ec-43b2-810e-b665f879f309.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f4a6a43-8c30-412c-9535-1ff7acf27505.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1369f719-69c9-40d8-9ce5-a54a3773cdfa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bae29b2-882c-4e01-ad61-104011c91450.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21627d48-f10f-4fa0-9167-f08c832cdeb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0015597f-2d69-4bc7-b642-5b5e01534676.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b560be4-be73-4976-8d09-06f2dc181701.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/282c7cf6-713a-45d3-921f-0a15c9e5ec1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20529880-4ce1-46ee-aeef-763a7e80668c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2de0740f-d701-4f3b-b91e-abc4ae59baf3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/019a58b2-6b0c-42d8-948d-b9fcc3d47eb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cef1037-2214-4108-ac0b-351e23fa31df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d0a219a-f091-430b-a0c4-6a90faa1636c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e44a67-9076-4adb-8ba7-497c39c1ac85.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1db1d9fe-551a-4aaa-abd2-a8353eb82ced.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e0df780-c746-4ee6-9e4e-abafc5fc5627.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22c52925-efbf-4561-826f-1866129383a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/31102373-7949-462d-bb5c-58d2ba6afed4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2408fba1-6704-44c7-b598-4e62504df533.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2950b52f-0d4e-4c6b-ad7e-7052b750bf9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19a439ff-6521-4bea-9179-dccef727f918.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de98fbc-87d4-4a2a-bbc6-39d3cb18cd0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2010152a-88a2-4d63-9349-6fda8db0800b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1a7417f-6802-4f4b-8f4a-debfd1558230.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e0d6fbf-58d4-49c3-b895-49ff617d2e39.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f2c90dd-ee34-481e-8f9b-813b11060969.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00525b72-7c03-4328-9c02-6393704810d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aa0b0ed-814a-4d5f-8d13-38fb3e74fd7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1329a445-b597-4565-bce3-3af1e5866df2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21a6488b-80dc-4caf-8d7b-a375011d70dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2927b995-6caa-41d7-9a63-a5268f6b6a23.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01200366-f4e5-46c2-8b1d-1d27075231ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/313a472a-b7c6-4e89-9bc4-ea83f4633d25.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c60eacd-d5c6-46b6-9038-3cd1f5a75e41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29420883-e102-44a6-95d9-389ee31d2be1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2af5993b-c01a-4504-b998-d936f2f79cb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2325e724-7c0e-408b-bead-059230fd6774.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05a8f337-2b64-4355-aa35-b63289f3c911.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/045fe561-d85a-4a9e-b0c4-9733f30305c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d56d5e-5de5-4daf-9c05-5d677e9938a4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/269a357e-e53a-4ecc-95da-acfb3e0264fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a3e7d64-adbc-4c49-abbe-3f871f3c557a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05b1c573-7f35-41b1-887d-bb6e8cedf29d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dc2a698-4e8d-47cc-9d05-91be01fbe7b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02d6943e-66b0-4d0f-80ef-a468e937b663.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e5ab719-7447-4d3f-95f8-5ed5c8c736a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f03499e-96e3-4f52-9e96-495d40775aa9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b42362a-0fec-4327-a3ea-f11b6a05efff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/040cfecb-0984-4393-a977-924c75795809.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ca90a6d-daed-4b84-881a-f2c804bc8ef5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29e0eb1e-8292-4eb5-a335-75f5174de4d3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/228e01b5-a702-4a47-9f4d-b5023f583312.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ea77882-9a44-463b-9141-b8a714c83dd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2efd4438-6385-4c97-8869-82c83e739756.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bffb0d66-0f20-41a6-bfa9-ca8acafd378a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c04333e-0911-447d-ac17-173ac4a27e9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a488e98-8e13-4d63-971e-dc9d172beb2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e3f9604-6f57-4332-90cf-5aae2081e36d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c18260b-22c7-4f05-9f43-9867ba93b519.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b683a4f-e04f-4da9-9a89-2dd5faa4b82b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/007d9048-a1f4-49ea-8fb1-f228dc4b6cda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01833e4e-6d0a-4ea5-bc98-638a70a66e50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a7f6cf4-8c1f-4960-b678-1fd44b1d89f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e777e72-c627-4599-89bc-9d86f9c197a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0d0c7e5-5775-4780-9071-583c4f89e105.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5b26fd-61c3-42e9-a26c-cf2331b523ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23f35b71-b93b-4f74-a9ca-579f188cec2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c9ff0b6-2ec0-49f6-85f4-54b424c9df7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e93fff9-dab8-410b-9c44-48e023b0f686.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0357ec4c-be16-4c0c-a0e9-7fa38df30c84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/011b475b-4b74-4857-8221-d15d71ba64a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ffcb353-6d57-4242-bd0f-7840d55a8906.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/055e2e2b-065e-4855-b0c5-a1bca820abea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1114d11a-201b-4105-8d7f-032dc2143e61.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d91a1eb-0ad8-483a-af65-e272023c3525.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/208c6592-2055-4cde-98c3-dd48419088e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3135b442-13ea-496f-b5ba-e0e074494c16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0310b580-0ba0-4b74-9de2-db046feddaec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/279433ff-5347-417b-ab70-51f06e227130.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26636455-c98d-49a1-8b48-7025f535f982.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/258f5240-8010-4472-91fe-494f75d59a46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03f24805-e3c3-4943-ba67-a9bcb43a2533.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8e654a-1515-40d4-a0bd-790b24d8cd15.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c61bb7e-b4ae-436b-9a71-97daa5c23e87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a37006f-16a5-4834-8d0e-548dee597471.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e4e7205-8ffc-4b26-bf0d-8e5864b7238c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/051af36b-733d-4663-88f8-dcbe015f783d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03f9e13f-1239-4d82-802d-3ea20731e1db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dd81458-239d-4177-93a1-536b1f127d19.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a71e8d0-6da9-4cb8-b31e-1dc8a530ea91.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/031eb51e-fec5-4b16-9bfd-2c6a49b2f34b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19b22865-0027-46b4-a8c6-232a7a1ee91c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cf52eb6-785e-48e5-ae35-6b40da8d024e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/208a6648-73ce-4de4-af7d-19c703d9200b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02186c9c-2598-4b9f-9752-b0c9e7c9128c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c038896c-a4d7-4e16-9cc7-d6a5d89f8012.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/043711b3-ff14-463a-b38a-6f8e2d0b1a9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/126dfeaa-4a0b-4416-9ef3-4aa9342fb464.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d313d4-1d96-4da8-8fe0-8a0db9910d04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/132e730c-0773-4adf-bd29-572c1298d699.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfed4174-2767-496f-a013-dbcea318f9ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a8d719-408b-4ce5-bb1b-7dc143c7338e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c06462ab-7889-4876-95b5-a20fd2a71408.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13233462-867a-425a-9857-636482a85e07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30ec2070-83bc-4698-8913-9ec89516940e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c67a56d-23dc-4277-8d63-ce3fb5afd4b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c187de8d-dff1-4f5f-b11e-74bd5bf8cfb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c13837b3-8a12-4cb3-98fd-4ff007df6aba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/009ac78b-6b5c-45ef-b73b-855116887af4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0358c757-07f5-4114-a1d6-d37b7aa9eb77.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b91bd91-7e7f-4d19-b0c0-5bae62ae1978.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2877d296-330a-4a33-9a2d-b92584d3555f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23505b01-62da-4e56-bcdd-1adefde2cbb9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24493c66-e6f5-4eee-8c7f-26c42cb47324.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1eb1be4c-db1d-4b3a-80f1-e80a65a177b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21b094d6-593d-4dc2-a53f-c8edf0ce4f59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f27b2f6-0744-492f-b56d-82fdc7596725.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5268ee-0a0d-438a-a5aa-b8255f68e4ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cf2eae5-29f3-4a1c-bce7-c9ade8554d1b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b2f6ff0-9b10-43e3-bd30-285529012ed7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30f042ff-13e4-4f89-be48-8d7ed8618ebd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13f82041-abac-406f-a1e2-376df42755f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aac71f9-fc15-4a9c-9b0f-b432f79ab2ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c605fd7-15d0-4589-9911-cdfb4531ae4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dbac7d7-9100-4861-8e15-fa2adf82c6e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14f1931f-2fbd-469f-9187-5423ac0ed109.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1db96f41-f271-42f7-969f-025733684776.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e3d0587-13a7-4f6a-99b5-f6551c071bb2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cef67f6-69f2-4e9f-9bfb-7fbbbd0012dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2069e8aa-9fe5-442a-9c28-e3f12d3addf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e164bb0-2b22-4ef4-954a-8e748a2ef263.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e69231d-bdf2-4a34-ac38-7af04f5848a9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/010be344-5412-4cc8-afab-fb07f29e3356.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265ef9f1-3a21-4c9e-a8fe-740d8fae99f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d373fad-c8a1-4e3d-8d88-b87d72188aba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30446bad-6b8c-4067-a008-6730efa1da5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28cdfffc-0cda-4f89-9d11-c3705ee51f75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d22ce36-f92f-49e6-a77e-4ebea9247c21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/030cf802-d118-431e-ba63-43726072a919.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1473b871-b12f-4d58-a957-ea9f9f6d0c87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2676fc9d-7ace-4896-b698-17fc68131851.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/271f9a5f-127f-4f94-9d05-ace8f48c0f41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/058240c8-1e00-4f7f-8a13-006aafd538eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ac0fb27-1555-425b-94fd-8d2eb20ac692.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21e4adcf-ed69-4dfd-9b69-6ad33a424733.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f1e9b1c-d6da-4897-a9cf-ae987927797e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d2737a9-4f7c-4e6a-b37a-a620bce1bf8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c392528-045f-4ff7-a10a-1a71487f3f17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27b3cd4c-44bc-4c61-af02-af2768877cc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02a378a0-0229-4f11-9a1c-bf32332645da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/051592aa-45c3-451f-8d18-a23ab3e04fcd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0133a3a9-350d-4501-a59f-6a7e74fbc1c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0320cae5-82c5-460e-96f8-754354697b8e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cd203a8-a766-4141-a1cb-9c17bd4d8f54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25906a3e-f26c-47b1-9300-bb9365c2aacd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ed7a23f-654c-4c0c-98ef-fd8d771cd901.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14474c25-eacd-492b-bd75-6a68dceb208d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23f8d395-245c-4fd8-8504-9796474eda3c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f47abd8-8c3f-40bf-a991-7d97ff1eb083.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dda43f4-d50a-459a-9a66-d4639af5416f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b6345c7-0d2c-4b43-b214-a5b43d69ac87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136f5ca3-1bed-4461-a73d-62e6fe7a6eba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2248f0d6-2adf-4206-a025-452a6413567a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ef6724-f95f-40f1-b25b-de806d9bc39d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/022eeb32-8192-44f5-ae9b-1e20ba387890.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27c4fce5-77d2-4b4f-b314-c97b6523ff94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23d956be-3b4d-4e1c-abce-a0e10b5b4962.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ecf47f9-3905-4518-b171-bc58cdac5e54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f5f6270-8811-4bfe-8ad6-cc6e1f3a786f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e8ea4d6-568b-4aae-b91b-1a1f0d13dbd2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c0714ff-9788-455c-91eb-3adabd5d0ca1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fbc887d-3851-4e9e-a96a-b85390a4c6bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302d9dca-10d7-4901-a1ac-c6e4dbc080e7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/010763a7-7394-49da-8fe2-6588a805062a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5d326c-a979-4704-b4e6-5642dd89f8bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26f63e56-725c-474e-979d-17dab41fc9e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d8e7ba-de96-4640-8785-99b37b1ec264.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03549d12-0dd8-4a61-ba7c-ecb4afe06200.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce6fe97-ef28-4368-a1cb-fa5f4c6717f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26903582-dbc1-4427-b9da-45e2fa00ed17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eaf12d1-72c0-4c28-9dae-be7e43ec3f5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10aa9591-db75-447b-9d6a-b84678ff6d95.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c48926e-0117-4c21-862a-3cb8312c68cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dffd62a-7f72-40ac-9f2b-6ad081735b5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cbe226e-abd7-4c75-94ab-a4c048c253d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/259cc0a9-5cab-4520-b7df-96000477e3d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c0e04f3-ddfe-49aa-9dc8-0f5dffe9132f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e7e1804-ef73-43db-9c3f-020464d7bb1f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c7a9efb-f38e-46e0-8f2e-f9ba05112ae8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d6e1a91-60f1-424e-9512-60f7f12b4f3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/135a0985-d0f1-4c94-af72-f11e18c30bd5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/032bb477-dc70-491e-94f3-0ee5c8d43fb2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24f7c131-9d07-4251-83fc-20ab9079e326.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/034ac9cb-fdc9-4e20-b39c-f4d9eaf8df91.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f9b4ff9-cafe-4c96-b0e8-6e4c282ecb02.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29677804-ab51-45b6-ac62-02958292a69b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fb162af-ea85-446e-bdf9-c84d49a78f6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0d63fb-3a49-4068-8330-c446f1db22eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cb5895d-53f1-4660-a7fe-53a5aadbceba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c179dcc-e25c-4cde-890c-0f6d6de7dcb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d1f4734-3e66-43a2-a3ef-34229bcf317a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2114aa76-4a8f-4061-8950-bf80bcfca0bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a32ada8-3fe8-4db4-865b-83e6f6f38180.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19e0fa45-d4a3-4112-a45d-6052bfd007f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dd88e33-5a20-44bf-8e7e-a54002270b86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c66d0d-32ab-4a06-8c35-5abd5d1e4bd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5f9ee1-220f-4614-87fa-cec51e537664.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0808f4b-2487-4786-a204-3b76b8ec3313.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1af923fe-35a2-4dc5-8bc7-bfc260258958.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/259d21d9-421e-4948-a3a0-cada6148b0e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b90407a-e937-47f8-8cf1-8f801733b78b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/007f06ce-348d-421c-968b-8b35ccb3487c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aa6506f-a7a0-4057-bc65-e56a27370698.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1346adba-99b1-4880-bc3f-8d6e9aabe814.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/147d5400-179d-4473-b823-77e4be688b59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aed1baf-8e50-490f-abd0-2ce2d2469ea4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/139175e9-b5b9-4dc4-8043-eba3e528af2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1edccb0a-5f4f-4f6e-8ec3-8e8090f8449e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136a0515-1b82-4854-b28f-68c574877bf8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22f6c9ae-6c44-4c27-8f9f-5065cbdce475.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3100902c-f278-4730-8edf-1c1d6fc2f491.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dd5582d-16a6-41a8-b06b-8d15325d34a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/118ee78d-51a6-449e-9691-33f64f92e1e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14af3bf7-619a-4244-aca1-4bb510fda544.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/019a638a-305f-422d-aec7-f1081f510046.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/012f2ccc-8ac8-4cc0-9da1-a282db470d12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bfc6b06-b180-4b11-85b0-e349e470e9ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22855945-01f8-4bde-bf70-23fcf73c6ef1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd856e8-928b-4963-bca5-89e764cf5320.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c76bdde-790d-4f3b-980d-b8877932ea02.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ab60eb1-862d-442c-b25d-6aafbe253571.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d069b31-66d8-439c-bdf2-d1c4b2cf3436.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d74db0e-9a5a-4763-8451-ad653405c3ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f1f2c60-536e-4e50-b9f4-b90cc8c4cc2b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02bc74a8-2ea2-4d73-a7b4-d2ae9c1ddfd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1d15ac6-9205-4063-9916-3856fb9ebff7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/200035d6-f2fa-4281-b1be-781fa95e015e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/048b36cf-7652-472c-ba61-6dfd977c8558.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/003d17f0-bd8a-485c-bc8b-daec33f53efa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01708093-89aa-40aa-a121-4c8011fd0016.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1189ff25-fae8-43e1-aefe-a2a67052c52e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/200c29e0-0373-48ea-b14c-4c811ad0f123.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b177f55-4ed7-4886-99ac-7fca13c099a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b66662b-5184-4b18-b7f4-b18664527d8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c2f6767-c979-4bf8-9905-bd219c7cde59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/297be3aa-dcb5-4e28-9aed-69ac55d3dd41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/268116a6-2304-4316-b5b3-3073fc5467b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e367b6c-f5e6-43dc-8992-d97554c7f2fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c510ddb-efb1-4e71-801a-07cd5459a73f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25c38056-0ae5-45e2-8a21-4bf97ae380e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e3ffe3a-dcf5-4b51-adbe-513faf17be4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bfc882d-8bb0-4032-820a-4c34e5790ad6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e89e0b1-c083-460a-9173-ae14c7a7d55f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302c4757-0a14-41bc-8ada-0798742239bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2744b7fc-c95a-4071-ae23-4d91abc8ccb6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11344a9a-430f-46c8-a783-0eabcbfd88fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f047f94-8ff8-4a5a-93f7-2d0e3288b972.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/235170f2-8229-47e1-bd51-0b3d42c0775a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/050b393e-4356-4eeb-9587-9a9b51da624e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2333c9d0-9df8-4620-b022-24de7b7c0354.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2493e4c0-8d2e-4834-a2cb-00bb34e70e33.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/248652fe-8a0b-4461-af7d-8e684275315b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20b0afdd-c8ac-4049-b07f-22b5af366bf6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/214e0545-1efa-4fe8-a884-a778473e4671.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/283e8230-90e6-4b3d-a350-37a56ad22c87.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20563db8-4509-4d84-93e0-72d19c2ad6f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d8965f0-e716-415c-b676-600d08e4415f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d11501-2a76-42a4-8d9b-48e662ee4ece.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/228007ba-1c64-4e76-be5c-7b7f17aa499f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e1a4630-2cd8-4dae-b867-6628b2aa1939.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c008eff7-942c-4675-937b-d18905e8c770.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eda3822-959f-40b7-8547-04b62705066e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cd87e35-29b6-42cf-99c7-0b6815cce40b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b6cb8d-0002-4f38-a5b7-7631b56e67df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c99e57a-faaa-4ef4-a050-ead660c7e5ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cb7194e-f761-41b7-8e6f-d5abdbfb270c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/025375ff-f79d-42ab-a443-b0d5671eaffc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ef5f49e-a679-4504-95ae-4499868bd5d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff8b4d7-7799-4d2e-be27-218c244ac73e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b928b3-09aa-49b1-9323-2a582684eb6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23737a3d-f39e-4c71-96d9-37cac3c72004.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d2ed055-884d-42c9-b140-c5c3e4d74fdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/053becf8-f9a2-449a-8260-a1480a45b1da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0d961d5-159a-497a-8b6b-f65ac28b35a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e33ac1b-a76c-4e1a-b404-9bec63c25528.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fbb1bca-4e41-4758-8ed8-cc4cbde7dffe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19dbd4e3-db2f-4b33-b3db-96a3d993e5f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23f91ef0-1945-49e6-9975-34842d8966eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1016f480-01f3-41ca-8b3d-5f6d76b28db7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03fe8276-9e0a-4f77-816e-e0991f3b7dfb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1caf8339-23e0-44b7-9cb6-3aad8fc602e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0428151f-e4fe-436c-bc09-12e3bd84f4df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28cea9d9-0b70-4a9c-945d-d321bf809c8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23ea49ef-6f5e-4842-83b5-8514e2179fa7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12c4c9a8-99c7-46b4-a738-2fa2b7027180.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b635aad-66e7-49da-808e-14f59dc98fe0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ed227d4-4374-4a16-a835-73edf92a9d3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13455fde-0e70-408a-a177-8acf2dfd1966.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20143e00-cbcd-4d68-9900-bd939d5963e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27522054-1b91-4f9c-9ab6-15aab6cca1cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/283db915-2d46-4477-8cba-7345743efb40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cfd9155-1552-4e11-b87a-4a87eff05057.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd6c4a0-b178-44d4-9426-4dfb4ae0763b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c107a573-4b0f-4b31-9ad5-f33279364ff3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eec3d8b-5153-4e45-a1e8-345ffcfea1a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/310d7a3d-488e-4abb-aee2-051361807739.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/206f38dc-9b8a-4559-aaf7-b612fbd06ede.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28debac6-3823-4e02-bc83-3fbb9ded1718.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0daac4c7-ca50-4ea5-a1f0-ef7376ad14cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fcbe192-08ca-4ec9-b80a-fbde810c24a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eaaa116-9983-46e9-bb80-a5f8dd3727f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/313f7f44-f566-40f2-bfec-54cc571b7344.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f227a5e-7cd0-4b8a-ae5a-7c089ce1d869.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e1cbe8-80b1-459a-846d-2c59539c1050.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23dc53f1-52ba-4411-87c9-d05b3ee35a0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c121b434-a3cf-415b-9229-0ec10a66d6be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237ce1d8-6ff1-4cf7-afa1-be822a58276c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ee25bbb-a699-488d-90ee-3e09c16ea33f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fa750dd-38ed-4002-99ee-5138338afa5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ab83e92-01b3-420b-990a-b11ba740121e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0175314a-05e7-4ada-9f27-7b874f29842a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c215710-59e9-4d1c-ad71-f39d665e54aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e38f5ef-e94f-46d2-a67f-d3ca284e4351.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aeeb847-2843-4d5b-bce4-663a4184a71b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/244330f7-5f3e-4c90-a20f-2e59e78c3b12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20b99054-7b83-453b-b514-8aa7f0d7cfb4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d4d4aae-bbe2-470d-9f9e-886a0ac63ff3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/250d9e6f-afbb-4188-b61c-50e669ded9d2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d27aad9-1f0b-4e6b-ab42-c3950c1f3e8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fa44268-b43d-4c98-b179-6deb568f0fd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0506fcd1-0923-49ed-9b17-fbae41bcdcdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20a95506-bfd0-44e2-964f-7b4140ed60a5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0359e31-2399-435b-9745-af2da190886f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e73864f-f136-46ac-b75e-6153a332e780.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fc91f5d-b495-4326-911b-18d0383f25ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00b9585a-9825-4892-8829-ddd75218bd1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a75516e-b987-480d-b4df-61505f384506.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1277f37b-d591-48ad-8d7d-fcf85c5cf40f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0564ed66-bcd9-4f0d-a66b-846c1facd59f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03c86a26-4053-4e4f-8e3e-6229cb4c4881.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a91d7cf-831f-4691-b25d-23b6fad483ea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c08fe556-bde0-4c18-bf5c-32231f92abac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2815b7e6-1112-484b-b6ed-367c87e0e22a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ee93122-72e6-4568-8f46-d1454d6ffe1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0110a566-f774-4554-bdda-a1883ebd2f5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/045e5500-3dcc-4d9b-8dc2-a85c611dd497.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20a20749-60a9-4132-81f1-aeac418676c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0db5d9d-74f1-43f4-9181-18de6ea1d862.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12abc170-f1fe-45d3-b574-2f4d030e40cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20b2d0e2-c98a-4258-8032-0c64cbd40df5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cef4200-5aa7-4cef-969c-ac9c0d855cc9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dc40698-93d3-4310-a9f8-d8ee88cac98f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dfade34-d928-490c-971c-ffc485f686ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04bc24b8-8416-49d9-ba53-df71eb1c4c93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dea221c-84af-4d05-bf37-c29e6aef85e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e493a0c-8faa-4901-9e17-8598a0380ed4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2463ccff-9423-4c71-9eab-d23b2aeccdb2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2477050f-f9cf-422a-ae05-63c8319665f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0094c2b8-5da2-4e25-a177-b4eea16bd671.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12454b82-2e64-483c-946c-c5abdbe8b6e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f0cb093-4030-4f30-824a-dc15e4d3d778.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fe866d8-0cc2-4f04-a6ef-40b4830813fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2be12301-eb2a-409d-8a84-92bf849c3247.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/130ad3bd-a55a-4d69-948c-2bff580e9683.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c9b45ed-17f2-485e-917c-76e29e5739d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20f7fda5-8ccf-42c8-b87e-89b78e35366e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d4601dc-0937-4865-8f65-9fe572129477.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c04cf0fe-7b2f-4bf4-90f9-abbb041c108f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26cb0d8a-d50a-4de8-92af-78d46355725c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/268833a7-38e7-4c97-a4f1-db5175ea34ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0094bcae-2cdd-48ca-9630-7d4157f78415.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30805bae-d556-49aa-822c-89b93b919f47.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/124d7c34-d9f3-4c96-b20d-467f9f291926.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fb21356-f5c3-4504-bdf1-5baefed7316c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ca740f-befa-45a6-be08-8c06da1da71c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0076e68b-90cf-45da-a839-e67d3131182b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29462625-6168-4494-9f42-2360e457907f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dba90ae-6022-4c9a-865c-323be484f911.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10a58805-abdf-4bd1-80bd-b76f8dd5c4f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27fa5f79-6d04-41aa-a7a4-e4d57db6b98b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f80eb4e-1ada-42d1-b97b-15bce30c41ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ab7d4ea-97dd-4bb4-a803-6d39ea8d6be2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25b48729-772e-4742-80fa-3763b787d87d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f75252b-2fff-4b7d-82cb-31189112f05b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19e5705f-c4d6-4516-8ee9-0e385e1bdd75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/250cf344-9165-4407-9176-523e33f07cc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e1664f0-f707-4bf0-9a33-4cc849e25284.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13780fd9-39d8-4758-81cb-2e05c4cbd91e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1e6dda1-1108-46a3-a9fa-6460c413274e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/274d7de6-af4c-4195-921f-2826156b7b5f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1341ac17-b441-47ce-b396-65491fcc6e07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28df7a3a-7750-4845-8335-4374bc039122.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e27d646-1edc-4bb6-80e7-dc425c69f133.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/231c9104-2a52-4299-a457-46220d7721d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b133040-808a-4a07-8640-d1f5245e8d3a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2602635c-7751-44db-82b3-ea47dd399121.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c7dda21-aa7e-4db4-84b3-7a039779ce27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03675081-3f27-4e22-a1dd-6cccd8c4cc92.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/236319c0-d5d1-4896-b23b-8501f0091411.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0444d942-dc61-46ed-b4a8-422f15b74087.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116d7d17-9c3c-4e2a-99ab-cf3ac9d223d5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11fc3649-c448-488a-8bf2-412ef14971d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29ba9bf7-63f5-4b3a-a52a-8719e7b3762c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/212c2acd-13d3-42fc-9bc1-1bca386189ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116dd2ea-16d5-4765-b800-cb77b72dbcf5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/032463f7-34e0-4bf3-906a-09e5e2956882.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0246ec39-4938-4c8f-bfb6-c750d0313ee4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03a4ba96-d15e-4fb0-bcc5-a2987916786a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/15350598-5268-44f4-8cc8-678d1e0850d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0332bce4-6181-48a5-ac40-b426f50abcc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/106bed89-d6a6-44b6-b871-24c2289b1546.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2eaa9b6b-9bbc-43e5-9e30-86fc78906e6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ee770a4-6c15-42ab-9c14-ad37ac54e983.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e73cb06-5a8d-4246-a349-2912217ba152.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13b9ae14-0b10-4323-aa31-b6c0b4f5e497.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2882e9ab-3400-47f3-b952-62e1876eff15.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24c49b21-8b28-482e-9d8f-676a93811b83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/000e3a7d-c0ca-4349-bb26-5af2d8993c3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/010f1670-a3f9-4186-b54f-720e3a78b9fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03dbe705-0a6c-434d-9b6c-93d7f2f76429.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19bea256-f86f-4f13-a0ca-c5cf45b62404.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12529311-6e33-42f7-a76a-c3b05a7260ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/104f01b9-7f61-49b4-836c-de1cef558910.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad8c258-ed54-4a71-b6a1-4c8a94421093.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10fc3464-bb8b-45fb-9861-b79d288e2368.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/241306c1-e980-4a95-98a6-fb218c081812.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ae5bc25-2e13-4905-b94d-a9240d86d499.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ea2a295-d334-4620-a993-28d72da2f094.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01960630-c20f-412b-b5c6-9ab2e06d64a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f80360d-cc72-4e06-bdea-8a1afc14b4fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1337f120-9eae-42bb-a531-3162ea0226a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26ff7bee-7cc6-43d7-936c-ce3f27cb167d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/247ad4c7-6363-46aa-8ec6-936f0c751321.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d428c99-400a-42da-807e-741dafc986d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5b8ef5-ebed-4b39-91e0-d59ec302503a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/003ec9e3-512e-4f6e-923d-daa9f9f3db9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ed8ca2c-bf2d-4e95-8238-e26e59630bcd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30737dbd-5bd3-42e0-b30f-0ac1c2901797.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/264c657e-941b-484f-a392-476091d70c5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/041b4ab2-82e4-48a0-a8b1-4993144f212b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f01bcc0-b142-45ae-acf5-6090386f714a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04dfc89d-0cdd-43d9-8147-e70ed709adf1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1afc2a45-89e9-416f-95f1-90268d99af99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d0de7b7-c3db-424c-bfd1-fe63c121b668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f8dbba2-2d4a-430e-a0e2-3d88dff1b785.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05b2cc6d-8a25-47c8-a191-bbaaadf0bf64.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e1d6a10-2b80-4912-82aa-1f97bec211ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12d00691-389c-42bd-a945-62fdc69edb2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21559d4a-04ce-4590-b890-6e8873253d97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e164f1d-f081-4284-a374-d6b2ee3d4965.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29380429-cf24-49e6-aa64-dfc411204694.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/112b8a2a-9c9f-42da-8b2b-d342db8d28c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fa36b70-6eb6-48fc-8f6b-4c3b74a4286d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0107394f-5672-4969-8a15-279714669f63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/237081a9-a3ea-41c7-a2a7-e055f7ea42d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1da66526-8236-4948-884d-ee55f117bff5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2634cbd2-0a3f-4503-bc07-b8f4f2da80c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28521ba0-b6b6-47ec-a1c6-3449d2ef2fad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fbfdf91-1994-4c3a-a7f4-ed1fe04cefa1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/113b23a5-950e-49ee-ad17-c9dcdc2962b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13060344-a70e-478a-8754-378e72ba00c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e109391-6012-434d-bc45-ec49b3816517.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/15212951-d7a3-4332-8fc9-51ef843a6ade.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bbfe45d-ebbe-4786-9cfd-463ca7578521.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c05576db-505d-422a-a41b-52029015cab8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de33fbf-998c-4c91-9561-df7343873bc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ea0e3dd-d671-42d0-b5db-0d73c79b4b82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a7df7aa-1314-40da-afc5-7af58ad1bee9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2465fa6b-2d2e-4af7-8977-b19325c560b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0118519d-7a19-4ad2-b5a5-5265cb86cb2a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ddc2515-b699-4b06-9cce-f2b7c3602449.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20003c7c-3308-4df2-9da3-ac104f8e50b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f51fab1-8b63-4620-a888-fdb75f3e5388.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ea8264d-3d10-4ac9-931a-1119b2d053ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30ab8c8e-d840-48af-b59b-f8eb77060419.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/311db5d7-eec8-456e-b6cc-5c078dce0bed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fe81742-9643-47f1-9c77-7186610b1748.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d10afa7-26c2-43ed-8a9e-931c2fc79522.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03a37eda-cff4-4ad9-b5d7-5f9ab9dbbfe3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21425b38-6c21-4679-b203-245d0c811cdb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22cad83b-6e0b-47c2-af97-667916d3a51a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13038f21-5a9c-4c77-848e-0cea101a1079.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30d9afef-c6e5-4dc2-9d44-604b98b435d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/211702c1-a91e-46b5-b3d9-6669212a7fd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2030b3be-cb12-4a2f-b96a-ddd702d361cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0346fcf4-68e1-4027-b0e7-67b3d53f54b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1180f1f4-b977-4024-9502-5a034664ab42.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03627000-edeb-4f01-927a-50662d0deab8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fa863e7-65e0-4808-a1c2-5e15b8157470.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/244d32fe-0280-45e3-90c0-60f344d99b48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b0652d1-2313-49a8-8758-18ebadadb620.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1b44588-d231-4ac1-b616-8c21d2fbca6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ee283b8-a589-4798-8c2b-5d6e6ff02697.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00632296-ea6d-438e-982d-370b771a6059.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04bccc40-9a80-419a-9210-bd3c2114754b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19ea225e-684f-494a-aaf0-acdb2d618aa3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c07be578-7dba-4f48-9d41-ca336d9823de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1328d56a-5b37-41b2-bc1b-a6c90989c642.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11149595-46a2-48b8-91d3-b9ebc4da8d88.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ace84b3-22d0-4fca-aa85-d047979d8f2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05099119-bb70-4efb-9cbd-03e9625528e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fbceaa4-7df5-499c-bab7-f7f75f56a817.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c084b75c-915e-4691-bb40-c16d7e1695a1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b14a096-e4a5-41ca-85dd-10d7863caa63.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cb71dda-47f2-44e0-ad42-2737ec3f43b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302e7d89-c44d-49b1-805f-39e111755975.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b427775-da63-4fc0-a2cf-d1dec1aa19f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f0bdf32-57c5-4a1b-8f76-882dd3b093ee.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24d7a347-1f05-49d3-8aa6-3b0eeb486807.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d939ac2-7fa6-4016-a1d6-742ff9fb6bbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c5ecaa4-5235-43e9-8a7f-83b4f62e683a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13a5786c-a5fa-4626-9dff-bb552b82bccd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0879c39-e94b-46c5-a8be-2408e1d21716.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff10836-3179-4bdb-9c7c-b24acbb4051c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0540925d-6075-4bb6-9007-020b53c08958.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30c0a304-f309-422d-afed-b5614565206c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26989b93-6b72-4c54-9e0f-d98d9a707627.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2086d3cc-021d-42d9-ad29-119b86f0b29c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1503ef72-d4a4-44c0-83c8-d35f449fe53a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11dd9dbf-6f5b-42eb-9e2d-1b410111c63e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1feb1e8f-4262-4a93-b104-262ecafeaffc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b66ef47-b795-418f-bc18-1339bc980b8b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f33cb7e-b6e9-46ad-b8b1-d59494bcc1d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0336175b-db12-4592-806a-51a3ce54e5bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad5f416-0e7e-4f08-9e8d-abd19bbe25f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/234add61-53f4-4780-9fb3-10bfcf22e84a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/229ce52f-9e0b-4b6d-abd5-60fc9c3a024a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/043d020e-c61b-40ac-8704-be5ed7ded293.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27a421cd-4dab-406c-8e35-7da415db0690.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/034e908e-6cef-4ecb-82b3-d9c8a243a60e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02270587-8e6d-4799-b689-a161db7c5c91.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2568153b-bdde-4292-8968-47f8e74cd400.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b039597-aeb2-4409-b39d-df8729c46c56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ea306d-5547-42cb-aa25-a02f151fe5ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe96923-d9d0-4be7-8aa7-48b3ab14628f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fa3ab62-559c-4383-840b-e125b861ce53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d37e84a-0e82-4fc4-b20a-de306a63ca67.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27d57204-7826-4b9c-8eba-a62687bc9ee0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25b2b0ac-12f4-4bd5-9155-25d94a5f11ac.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/011d6083-abaa-4b28-8a53-36aa0cddb3b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f7b0aff-0bb2-462d-beb3-e8c98c30b654.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1636efa-40ac-4c63-bc9b-6886165ef44d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/255354f6-9379-493a-90d1-5dd36ac660bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d9fef3e-7129-469a-97e2-b2637fff3124.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ac2f354-ae86-4c87-9ed7-38c842c6e604.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/105a84d8-760c-4158-9399-4ae9127ab813.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f503a18-442d-44aa-894a-6f4eb9d16c48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2966ec51-452a-4841-a9c3-674e04292614.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f4dcc33-3ccc-41ca-8b33-9db707891518.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c250181-32e8-4879-a115-978eb7285255.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b3a8b8f-927e-43c2-a0c2-b3f2a996a636.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c427bf7-abee-4c71-933c-488fffb53360.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03800681-c722-448f-bf8c-635080a95f00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0107871b-1095-4cd5-a197-bc7715873cbf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27c99065-7882-4b2c-a856-23d027a96559.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b65bd85-e390-4b30-9f0e-f2f2a3d35710.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fc96ff0-860f-4fe6-8743-979a78eff9d6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e6ca7b6-3d33-4d09-8c1e-6c1d0ffaa844.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c14ca401-87c1-4ab2-9aa7-7f8bec9f0c06.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb34bbd-a1f9-4006-96e2-0ebcad6af512.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0385d49e-7642-445a-bffc-28915cee0056.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00100a24-854d-423d-a092-edcf6179e061.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02a54bea-8b9b-4572-9f7b-bccda112e6b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26d3b1ef-f18b-46b8-8feb-9eb3fcd1abb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12f064d8-50d3-4e57-9960-88b720ea8638.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/230a141e-7c8f-4afb-bda0-a54d08baeb16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27ba7a76-c614-4a04-982c-a652d7f51f85.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bb8f56f-1f5c-4052-af68-4a7e0f814c0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0edff49-046c-47ba-af8b-e740ae15da3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b554342-6224-4d4c-822c-48a56a522c3e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02d8eb87-93ea-4e76-94fe-2fce14a93c6c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c3fd796-9222-4122-abdc-e9ed268d8055.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d75812d-0a61-4e29-854c-e0ebbb6ff1e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1392fd6b-b17b-4dba-b70a-c9543f9c8105.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0975b54-8922-449b-950a-70308820b56e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/127927b9-3b70-41dc-b366-ac41d2ba0420.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cf2d6d5-6124-47f7-94ed-78f1aefea44b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10b10a7f-c03d-4b05-991e-ad12c4035e6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dfe9ea1-0a54-475a-b44e-76cab0e078c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d958b72-ac2e-4117-86c7-ecffc5fc1f2d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/206bdd43-542c-4888-a7e5-4e1932638b0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a0a8e16-16fe-4940-83cd-2917f5706b7c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1407f44f-f5b0-4f3d-89f6-7f77023b5114.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12659873-934f-4fa0-b1cd-1ca664ff536d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c103f115-266b-4f0c-97d0-082dc2438a27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c6a303-2c21-4edf-9dca-4999dafe8a4e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12228fee-ec17-4d76-945d-cb7fc0e9c3c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28805c82-2a63-4790-9db3-b36f6576b8e4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00dec011-0053-493a-9c51-3fc3524b3357.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30fe50ee-4108-42fe-8dfd-27b1e61dccf0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ae8be61-41d5-4197-b733-21701ec45a6f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00b4ac1b-fa09-4dbe-b93f-7d9e52992a68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/059cdbab-5cdc-4b42-bf37-0423ae3eba0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3077ddd3-b069-4e72-a06a-b6edcf06bd99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f7c5eb5-3cd5-4495-a5d9-9a2b4eff6165.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f69bd0a-8e25-4c4e-b5be-f4395f032f58.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ec035b-377b-416c-a281-f868b7c9b6c3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e1f64dc-4b8f-4cfb-950d-800abdbc833e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12ab7f52-d26f-4a18-8004-06fbb1741f7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e96e601-f506-4825-b2fd-2c7ccf1603af.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20caa5ca-2910-4109-946c-04598d716583.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ac5308e-f3a9-4e70-a224-7d8ef50ae82c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a583cd3-23d3-4789-a24f-bc7ae6fde815.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24c16099-4e5d-42ba-bafa-d73e951f4210.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22d4c0ce-db48-4a4d-9653-a9e362c1f812.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1418022a-f4d2-4a07-a39a-3143d0c2bb7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f3b2f60-d088-4e3e-b4fe-215bb5602926.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d47e0cc-2626-4fd5-81fe-01754ce50a0c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dd44ba2-d479-4f24-a7b0-e1e934aaea65.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10689654-3a08-4582-b193-d821a2a9d3b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c549a7-3e8e-47fb-8fc4-0e9fa7ced0d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3036896f-9a42-4e66-a745-4fa2a428ef7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28e7948f-0d76-4616-80e0-7e54f8691d43.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1225df58-5bdb-4dfb-bf61-9eeae31ac7c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1507764-540b-4036-ae74-8271effd56c5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c7e896-0bae-43eb-8e9a-f498e3defff4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/151981ef-d9d0-42d6-9b33-e9cd33c07ed8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05b1fb97-b4f8-4bb9-b154-27505856cf0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f279550-0173-4db1-a57b-c1af4ce6060a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13a84b9d-6351-4424-b19c-c745ef755dd2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27eef917-370c-41a9-b97a-07fd4cf3fb33.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5889ae-989e-405d-9675-8449b477833f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0460ef6-44a3-45ef-beb2-ed1b13c88e5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0de9cd1-1d0c-49bd-a3c1-f0f62e64414e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27505a32-aae2-4cea-ac00-aa4093d8611a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02ee9955-1ae1-4c2c-86ca-5c8ff8d56d4c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f878881-50fb-4a61-bada-8c5d04c14017.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fce36f6-ab50-440f-a2e0-3960d88ac2b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/137230a8-93d3-4779-9223-604bdc13c093.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b850106-5298-4cb7-a936-421c76585eaf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c2502ab-8c4c-4142-b7b4-a1b36bf685a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a19dc42-c7ed-486a-9bf0-8ab60b297326.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21a7dbab-2bdc-4656-b51b-7f9dba14e39c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23a2d9c1-6dc4-46a9-9ad8-c53ad5c8cd22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b6095ed-ff63-4aad-92b4-9a9260678ac1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/308d1be1-7a4a-460f-8429-0e02f1ca51fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23515be4-852c-4d17-af03-c338ab35f427.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c267bbb-7bff-40e9-97c1-b102e9d1fb73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c8a875e-7e0e-4137-848c-c39fc7677db5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2decd097-e919-4dad-a2cc-a3a6e4062efd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2699ba79-7383-46e2-bf24-53b6bda87dfc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23efc2ad-684a-4f0b-910c-645a58bcbd7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e9efec0-222c-464d-9955-55e0aa7bd8be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dde7f7c-84e3-4a24-a159-353377438e30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b989809-abd6-4430-9c8f-4805723d851b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd1eb03-1494-4f10-b024-af68cad7d545.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1353128c-6689-4ae7-9d97-167741984ebc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1197d549-cd90-4692-8985-a083ca49f8c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/004f0a0f-fb54-4068-8b67-d3eef6724f44.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d5eccb8-befa-400a-b2ec-3bfee6004787.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27d28bee-7a75-4698-a1ce-2950ade2bb6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05a96e6a-86a0-4163-a4de-388833f2dc75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/153222cd-6029-4b8b-9171-5d85e0e9bb46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1213e7da-85a7-4407-96be-3852195cbf0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f87b598-ec56-4d40-96df-8ff204db814e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e9a762-f214-48c5-8f56-ebc96607cf70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24e41a67-aee6-4ee5-88ab-dec36b64836f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/114bf6af-d3ef-489c-a6fe-304f7ef36fd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c477c64-f775-4edb-a72b-336aba4cef59.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19da409c-2666-4b0c-b088-061f81ffedc8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d8606bf-1f0c-4f8f-a271-dd40ed0ecf45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10070fcf-06e1-4d69-826c-27c91e7975dd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d4a940-cbb1-4dc4-84f7-b862f8db5f7a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e530c69-319b-413d-a9f3-2eb0810bba05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20d2cbfe-4a02-4693-a8ad-546a6c5f15f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d3b34c0-c57f-42ae-b2c4-852195404c74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0f282b0-d5d9-411b-899d-b6174992b0f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d3b3772-97ad-466e-a5cb-ab2e5d1ed15c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ebee16a-b447-4679-ad2f-9eacd23f7901.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/243be28d-f021-457f-b86c-95394c9be74c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f45f625-9c2f-4c89-87d6-4131ed0b67a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21ea97d1-c6f8-460a-8487-8530b4fcef02.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dffae5c-df93-4447-a88e-5abb578ef400.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/118dee02-0518-44a3-b3b1-58a495d9f572.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d0ddf4-12c0-4998-a16c-f35cd42e2ad0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/025d7915-74a1-4d0e-83b7-d2cfc1e1ac54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/309f4a7b-5687-47c7-ae62-90ac57a08e5f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c104712e-81a4-4a39-9d0d-0ca3ec487e93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ca69a7-39b8-4fbe-93c0-16769f1ea057.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/133d3fcb-f893-430a-9ee0-07a720e4b19e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a4926e2-9d99-426e-a799-c8002ef2ca79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1471470c-9ec3-4b3b-adb9-dbaab18db5cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d0f4ad5-a180-4eb9-841b-4a67224c08f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c1a2fb-dbca-450e-a488-9b48a824889b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25eb25e4-35a7-4357-a112-264787e32094.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03c9f53b-f5f8-4c9f-b69c-0986ab3fec68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bb7ca9c-c1ea-4054-93ee-44009e6cc119.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19a63d01-51b2-4b32-8cc6-312bd59db840.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19ec8e70-0d6e-4912-930a-d16c280decec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/145fe573-db6c-4b16-bbd6-9b34f2ce4c1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20cf7cea-879e-47fe-937c-15a258dff0e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03ae4a8a-0f24-4de4-a791-665db68a2f2c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0300003e-3405-43a3-b5d9-d314d4810fdb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30a6bd84-033f-41be-a322-94c88cc6461c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2775f13e-cbd7-4216-b89f-4c74126af11b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1bea7c6-14cb-483c-b2ee-e958901f0667.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c75136a-992f-477a-8a51-ee23fed87917.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14ba4cea-0fd8-40a9-aa01-4e6c05da9fa5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/105d515f-b44e-4ba6-b4b1-b00b5354597e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2287cc8e-e51d-4e32-9eca-760c49e4539d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20b02346-0873-481f-a701-5ed8155717d0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ffaa0b8-bef3-456b-ac73-e4d88073c3b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dd86bb9-61ef-4efd-843b-da1b58ac5092.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22cd53c9-4ab4-4ba2-85b2-8eeb83811ced.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d77734e-9ccc-47e8-a3bc-eee7c719a271.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1e5e19a-4aa3-437f-839c-a90e30e30a5f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24646647-6508-47ec-b527-eba27e8751dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ff454af-772a-460a-9b9e-2c6ceadbf0b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b63addd-3dfc-4bba-b1e5-fa6e6e49996f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c0a9525-08a8-4bb5-b26e-5b5ee15fa2eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24e04bef-a0c2-439e-9181-5fa26c162fa4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e0b62fd-fdff-4038-a06a-188d2a3aa8e3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b06329c-fae8-4a2a-b8e0-c59de0bb43db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/012469b7-1b4b-4407-8c1b-7236861d49a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23fe0fe9-6021-401d-a981-9c9766bf96b9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d284b8b-2c41-4374-b082-db8e3f8cc18c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e615d9-5bb0-46da-8625-0aa2ae1c64e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037ffaa8-d381-41af-b14e-a95b2d4b347a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c4d9d50-bb03-4d73-b972-4f9ca8b90661.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f9119ab-038b-4657-a4aa-d6e83dcb6800.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/034e373b-aa5d-4464-8528-a280a42bc651.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/017a4e3a-191b-4013-a228-dabb749a3d70.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a8142bc-98c2-45fb-b2a3-6b8d0d95c8bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d8417fd-bdcd-455e-92eb-81a54b77173e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e9709fd-a769-4d60-8a06-29a41c7c8297.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/207aa3ce-48b1-46af-98b8-c8905b145b3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13be9ccd-fa89-4c43-84b0-069b1eba6c28.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/125917b3-7c5c-4d83-b6e5-6ca2fc79f5a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1afcf486-18db-4ffb-93e4-3a3d6a943110.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b62bfe4-8fcb-4666-a3c9-44aa6fa0d9c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a9a0416-70f6-4a7f-b441-284c2604d335.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cdee3fb-5824-44e4-864d-e069609b69a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f612e6c-474d-474a-875d-f227a78911cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03226a3c-7341-479d-8188-ebd0e52593a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/131224d5-2c75-4cf6-aeda-b2dce902291a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14a5a858-39e6-47b2-b0ed-35023536b3ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27d281c6-ee2b-4ca3-b5a0-96622436b397.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f9acf4c-b60a-4e3c-8ceb-61b73fc36e1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e64b83a-7b7a-4bf2-9787-08cc6ca0c951.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/215bbba8-f33b-49f1-a539-aae38cb82f12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c07239bc-922b-420e-9f30-dede391f9fad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0140cefe-d9c1-4de5-a59b-1aad98e4b62a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d701694-3c54-450e-a236-46cb724f5679.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13213d41-f74c-4806-a6b0-1703893e5a80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/020d940f-e100-4c82-8f44-58174dc28684.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0543bdc7-dc00-4dc5-9ae2-e7f131e0d60c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21109de5-475a-48ac-9727-0b2bf8867331.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11d66121-49b9-4365-8c43-f9d3474e7c52.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d28dd97-ed8b-4635-82b6-61ec6dbd1224.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2557ee07-5fc1-4eba-915e-f52d3d898f1e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ff722c0-839c-4a62-b695-503f776f205e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/201e5036-cbcd-47bc-8fd0-5558eaeda272.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12c940f0-3238-452f-a653-f8bbdbc4670e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/257e34f1-f461-45fd-ab15-ec4cbfada52a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04b196dc-81cf-45f4-9180-e6766614599f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29920204-eb3c-4e94-8724-241c198f2f81.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bb5d37f-0f20-4b5a-b8c8-5663a1c1ff74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0428a988-106d-4ce8-a67b-2ee1827a825a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a91292f-35b9-44cc-93c7-fbab142c5a4a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0105b36d-2d7c-4431-9b5b-fa6acb31ee1d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/048db597-2cab-4d93-83f6-eec6594760c8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e0083d7-5e56-4c71-bce6-1a4d3e02cdea.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0028450f-5b8e-4695-9416-8340b6f686b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/044702b8-5ad7-493c-ac3b-1fe5292a62b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f66dd10-b3f9-4efe-b6f1-25daa01b0668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0521179f-8de0-4ec9-80c4-2f6e36f157cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/224218a9-be4d-4564-9f35-8a4d1b5a1f41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d016a1a-02d2-4331-bee0-a49ff12ce5fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0de14fa9-8f75-4e50-abda-1e5414b06e0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c2a1ddb-6e71-4c6a-b897-adeab5d88cb0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b22d6c-7cb3-4331-bdfe-b67a20a623d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/244d75c1-1097-42be-8f4f-c9a0dc54fcf7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/271b51e1-bc44-4bd8-a130-e211b716a201.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b51a44-118d-42ac-91f8-f072f3eacc7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2db2a370-977a-4f87-ad51-cca37e5e5b3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2db3f026-9b97-482b-bc8e-35cb490709fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/004f720d-482c-4982-b866-1a327e51eaba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20cdf26d-84e2-4f06-91d3-3fb35629dac9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26095953-c59e-47ad-b256-290063137289.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b40b6f0-9d7e-4f20-bc5f-3086d1eec7c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/205ff415-45e6-4b0d-b9b3-321532ccdf86.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/203b1b72-8b45-469a-b023-3a460f360a34.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1382da13-c9ae-49a3-8919-2ae412553fa7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11b01d48-9f9f-4c4f-b6e3-eb2df49e84b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0106724a-2379-4897-8504-dfaa6db072de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25df7025-79bf-4b6f-8b58-dcb1268e1a22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2101330d-3356-4236-bfda-f4663679a970.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13584fbe-6565-4aea-ba4e-3336996dc946.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fd5a4d2-b0f2-4d58-bdd9-0dd1862a523f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ec8f886-8fe0-4334-b0f4-fb2284d9e3f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2608ca32-b4b9-426b-ba16-c6eb19f88450.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00f376d8-24a0-45b4-a2fa-fef47e2f9f9e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/286c2c78-1a39-4fc9-96ab-90d496c54a4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e1220d7-1c72-4afa-881e-5380d356bca8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c0d42af-c948-4939-b0d4-84e9834d6daa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d27bf33-c15e-45ed-aa3f-fbec202f685e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/218e107d-4719-4bc0-aba8-cd1f055708b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e459d59-a093-4e75-bf90-6d561881b167.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d17ce84-86f9-4153-8d91-3a75ffe303cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/131f718e-66b8-4094-a0fa-d34795732239.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0554cfe4-89b1-4bf0-8495-07a641f9412e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/126d14a0-995c-4e32-ba29-121c7ba2672c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05addb62-12fa-4156-90b2-ee182486ee94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b20c1cd-d62d-49d5-a5c9-43780436c308.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c4b74c7-3a48-453f-8f79-2f58cdccedfa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2317d609-bef9-4488-9b56-591954dc6742.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/002fcb77-ef76-4626-ab34-5070f15c20db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b2a11b2-12b5-48ce-9b3b-39c91f8a691d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cb4057e-ef4b-4bec-af16-29073efee522.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27cf448c-36b9-4ee0-ad14-dcf350f564b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24179b68-0c97-4aa3-96c8-bb718ba204f1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/231e06ec-050a-4514-8241-431aa1ec5fa4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c0bbb9-f826-4473-af85-d976cfe8342b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26bf3493-da59-49e0-a702-eaa7bf823a91.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02ae4bbd-7dfa-489d-9bbd-e43e60ff876e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/000686d7-f4fc-448d-97a0-44fa9c5d3aa6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03161440-f3b4-408e-bcac-c902b47f1166.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20f708ac-0e1a-40fb-908c-5091f4a4c08d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a3aa658-dba4-40c7-a669-15c40ebc06f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19c61430-be79-4a2b-a888-23f7ef47e5f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f670057-5030-4549-8a10-392fb97f520f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22bba58c-7d19-48f5-b71f-a743039f21de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03e73ec7-8b85-49d3-9740-d6151fcc32f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c179ad70-56f9-4739-8a29-17c71be7f2cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21698e32-6477-4178-bbe3-9e538d3c9d6b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0524e490-8eee-4342-8813-870acac6b222.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25e3c135-1274-407c-b34d-643460fbf617.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02500219-bcb2-462d-8c02-857a53a2f969.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c177d65-c29d-471e-815d-74bdfad9497a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19aa3f9d-9660-4063-b67c-8c08934046a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ead85b0-dada-4d3e-8a39-3989aaba75c2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/290b2fca-1aee-4058-a615-08dbe5d697b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19a5ece9-1ccc-4b3a-a71b-9de3fdb284e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11390d92-7bc4-4f66-818c-10794419bc37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b3a47c7-8fd9-416f-a9a9-04388c11546d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23a42b0c-8d5c-4f0a-bc17-04a4b3c4cb8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c13125e5-a27b-4110-bac3-7ed3ee2bfbb1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23cadaaa-38ee-44f5-af5c-26b64a0f4b28.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fe3ba48-ce4d-42a4-8eda-99e3eb40d5fe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0a533e9-21c9-4c3a-9165-410eaed5b294.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1afa2510-edc7-4ecc-ae32-743403295afe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ae90a2c-813a-45f4-b350-03814995e418.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29ccf633-6c21-48e6-8fba-fd95691d8384.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bffaba0b-e40b-4a7c-acc0-694c015a905b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/104e23e0-9104-4a9d-856f-1e2463509643.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0562697-eddc-4aa8-8635-4010fb5ef989.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0389a598-b5f0-43a5-9a98-7dfdd08e0b9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/034c963e-7d6e-4350-b2ff-8e534ccf562d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0568aa9a-9326-4b3b-b3a2-2ef81bc42484.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22684349-817a-4855-909e-3765dd94a1cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c106e49-84cd-4824-a12c-c2e737f31fd7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d796af7-6f80-4c3a-a3a9-099cc1fa5ddc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04269ea9-d43c-4f01-a72a-d340fb49ff27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/223e7914-1cdb-4fe4-a086-0969efed0ee5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/262ee9b7-31c4-424f-81b7-bb6ddb57b7e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e133eeb-8b1f-491f-b9f2-9c2dcb393e82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1321fbe3-c31e-4c0e-bac8-73afbb04230a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/057a8a94-42b3-4f8f-b1c6-1ea47715fda8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0491ed4f-43cd-4fc2-93c7-dec9ce25590a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/255a63e8-8a5b-4832-a742-5fbb8ef7d2f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2860838c-8c66-4201-8418-ba961d011f75.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2600a8f7-a739-4d2e-bf4f-835fcaa45287.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/309c1bc5-eec3-478d-9dd5-e5fbc34c057d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c14c6b4-985b-4606-b4a6-fe050f011cfc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11db91ba-17eb-4676-aae0-82d4588d1d2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f1a0bd2-7589-442a-be91-3c284020fae7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f750c99-7add-4129-a7b4-21000786d550.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00edcd2d-d727-486d-b15a-675855e4dca3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d23e774-78fc-4c4c-beb5-5504f915dc27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fbac962-a13e-46d6-b924-57c5e089fd15.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8c4f4f-d655-4e7a-810a-fca1d19c91c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2644da41-6eec-40db-8e85-0bf261de690d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2838eabe-5ddc-4ddd-8934-91e362d10d18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01972669-8b42-4b47-96ac-e6a085e504ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cec3d93-889c-4f4f-ae28-72635b933694.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/222d0924-ad58-47af-a4a0-d60339febc1e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f2454e6-2e7d-46b2-886e-70aaee4a2d0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/232df82d-debb-468d-a780-a2a0bf19ccd8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d26596a-1da1-42d7-8a90-9b573bcc5c45.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c171dad5-e08b-4590-a946-9ab43a257b8c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2af2d0c7-b138-49b0-8bf3-65aaedcf0682.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03900c12-0a25-4a24-a3b6-38992cd7e050.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f98a99c-27eb-4e7f-a307-549f33accd71.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e57842a-77a3-4eeb-9261-9818c2707da1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e00f7b7-ea1d-4da8-baa1-ffcbcc60be8d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1510b788-b081-4600-8d76-d9cb55590edd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d76b5ea-17e8-49a9-a342-9daf21a912bb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e9bcf63-ad62-4f1b-a2ef-4f3449c1d1a2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2228940d-d9f1-4f96-820d-baae56f766d4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b39cb1a-d8fd-4227-a74d-aee511b66a58.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bebe474-0785-4c45-8546-8c3f9203ed17.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27eb5f4c-1fe5-4580-baa1-1193824d5233.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0470a3c3-5ae2-4324-9460-5720aa55a2e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11112783-2e0b-488c-bfb6-f8c7c782baa3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04892909-51b5-475c-9234-e7e97fb77c83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fd519c1-7a2f-47dc-8904-a5174fe7d2e6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f84d048-0bce-45fa-87f9-2c7356b753f9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13e8639e-ef45-48eb-a24b-6c32d3517e29.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fbbcf0-fdc2-4ebd-a921-4bde43188051.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136443f0-a25b-4dae-8660-78dd06c5f8db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1378f79c-6ea0-41e9-98a9-1b15c2c54a7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c573f9a-7e56-449a-a585-6105eb563237.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00d61d6f-d150-46e1-bab7-0a7a36a0cc80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c02d68ed-3ae8-46ff-8e86-bcd2cc14ad0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b57e19b-7d20-4bdc-892a-4ebc6c8fc67f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/027a5fac-783a-4dd8-b032-06a8b8d05546.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a5eef1c-c817-4c73-9e8b-d75eae0e4c0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c7a42ba-3b07-4cbf-84f3-0fe7f4379bf2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24feae08-16b3-4391-b20d-7d48d7ff4161.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29f4ade7-a785-419f-8d39-9c7d57f3a296.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/127bb3ff-0c96-4c4a-9658-918ae798ee7b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c803f00-663c-483e-beee-4b8f1f710f9b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a344d33-4969-4543-801e-0e3e89520eeb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f0056d6-a405-42d6-a088-123ed42bf1c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e43a738-b9b6-48ec-96de-f527264904f2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b5d3109-5eb6-4190-aba0-f538f7980ae0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26f31538-b674-4262-948b-74b0e9b4f872.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f4962d2-c127-4a9e-be16-68b8a44c7810.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0050f8bb-36a4-4a1a-8de5-2d73154c2571.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/101d65c4-d5c5-4a85-8988-59c1dc02fada.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/205f6d99-0870-499f-9644-92b98d985d62.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c232f78-6d19-4eb9-8dac-06ce1dabc638.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28531cef-f479-419a-a6de-82e45916534e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25840be8-f6cf-4df1-893b-80412b99a417.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1257b878-e99c-42ff-a4cb-137a369afa8f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26f13439-9e01-443c-a503-bd8340cb7bdf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d78c3f0-7511-4ee1-9081-1d101aaf751e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0371b8f9-9f18-4f4c-9c9c-38867e373437.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21f7cfff-d8a5-4585-8dab-8cf4c13d991c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/295fdc53-a88f-4fdd-8392-15c8776cde93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a27aad6-fdc7-491f-885d-44d5619a6cf5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11654d37-ddc6-47f6-8464-0b442afc0e13.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d90d83b-71b2-41b3-a385-312911ae911c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1540ef53-d234-4110-9db9-c9cc21cf7010.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e972c53-45ac-4313-a3c9-ffd5656b9619.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0255119f-2fcb-40dd-8e89-5da9a6318e47.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d1d9291-e33e-4224-ab4e-c6b89f92a66c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00ad18b7-06ee-4c4d-abca-14bdf814e8b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e1ce192-3106-4922-a0d3-3d81b8eececf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b9c8e5a-7c64-416a-ba87-fa424c3ad707.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1cad996a-c21c-46c8-aa09-95aa8220efa5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bb5fb3e-0a7d-42c1-bec3-bf86f6fe4029.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/05a79b29-88d2-4782-a0a2-272e83890e0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26b59bc8-dd04-4093-876f-fb0667d3b43a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03bc6e8d-73df-432c-92be-9f6fe2eb7e34.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f7a2252-615c-46e3-b800-2f300ade9916.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a4d3884-debb-4f90-88d5-3f998681d8df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/011949a0-b52b-424d-b78f-afc3926ef2de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d7920b-2539-4655-8079-ea6e4fb05c4b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12d70948-c153-45bd-9942-e6cc07d54d07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30b58949-65e7-425c-8fd6-ddf3f8e5e055.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2793fcf7-a41b-4c76-a750-bcfc1632245f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a1276a9-c806-480d-80ac-008d1bcb469f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0a4d39d-2848-4827-8d32-a21cb6f4e05e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e1d3610-9f6c-43ea-861f-feb86643987a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/116ec0ce-1607-4c39-88d7-58e6cd2a523b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c12bf14d-8ac3-4c9e-a739-3789dc17d067.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fe2c765-96fb-4500-9811-98fb684e583e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/245beb7f-d20b-49eb-8403-09360ec9f163.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10c6f9ca-4e9f-48f3-848d-4a5c2b8daf89.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00722cea-8cb4-488c-91a1-402d3cfab7a3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/110745d6-b723-471c-8d12-5a25324e1acb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/121df7c8-b968-4a56-847f-063915515223.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e3720f8-0f46-4c42-8fa9-25aee26af12c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27c398ca-1fa3-4484-b3d5-1becd99f6105.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a5ac8d9-1383-467c-93d1-8b635bfc931d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cf31164-d6db-43c0-beb4-90dd15363216.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2dfe35a3-5aef-43d1-9971-98ff5b813601.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23423315-2a2d-412e-8c45-ed9cc8d589f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2971548b-c2b1-4b9b-bf50-00d7cc78f096.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19fb3e16-4ec8-4149-ada4-8ce5d79f41b0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b1c866b-ef20-49f0-93ff-e377af896c5b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fd5aab3-3587-4ae0-b80a-76854907b966.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25f6cad5-c636-48af-bea6-7bc4263ae253.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1df5a620-00ad-4266-a508-0d29f1e00d04.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/254b1774-3219-4a4e-9486-203b1867fedf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1239f15a-2c58-4c73-bcf9-f190c28b5520.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dd5e84e-f64b-4226-abea-b7e11088eb05.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00c0f4e4-ac8b-4dea-8231-802f6b9860dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ef50d59-05b7-4c40-a722-0096532a342f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/045fad52-8652-4827-b725-cb616b4c482c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/276f3471-858d-4856-a0e2-1106a92175c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21797ffc-8258-415c-b886-5ac6e60e6962.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26586d01-b992-41c4-a7a4-c9f1f8d102ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0319220c-e0ec-4262-bafd-c5d650ff5e69.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1d9b4c9-39cc-4b37-b95b-82d26a1b68df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/015a202d-5e18-4dcf-802c-0f7e75e14a38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c06dcfa7-3dca-49e2-a94a-28c354e0f876.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2918eae9-cbaa-4ea4-a0ce-6f234a954220.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/303c255f-fdf9-414e-8463-4b799f5839c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/281e02d7-5a23-4cd5-96c0-923faa21434e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/131e619a-f15c-4c89-97fe-64c484e17834.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ee6cf48-a6d8-480e-a404-b8e8503bcf36.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bff4d9e9-8206-4109-a2e8-4c2aac78404b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b10797b-9f2e-443f-b279-da2c1d7c5801.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30e2f478-cb79-42db-adf4-18498894a668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00475531-1036-4ab4-8c12-1eac7e9ddfd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bf11636-a3b7-46a3-b219-389ede8b09cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a731e8d-4b28-46ec-b22d-01cbcbf67d12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1bbd9bf6-9238-4399-9280-b8ce09fb40dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bf2fa51-11fe-4b7d-afa1-3b373fa2384d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fb092e7-1703-4c05-93de-6e0034a99f20.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25fdf103-c49f-4837-a2b2-b0691ca3d877.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13b640cc-e353-4d28-9ff7-a33bc7836eef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cf8860b-ee52-4b64-b8a6-5f753c64412b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fe97b7f-62e1-4b0c-84b4-d41486039f01.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f05627f-60eb-4a46-85d5-69b8c0391643.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2179339d-e6f0-49ba-a405-bfb4845fdf5a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fd17ea9-5654-4632-9dd3-a9ec6c81aaf4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0385be2c-896e-489d-8b09-bac5694ce5ed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1dabe928-c185-4fb6-9cda-70a4944c291f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c11b14e-23df-419b-9a6b-e16372754c2f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28f0e911-7f0e-43de-8b6a-70fb1b77f21c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19b28521-51a6-4fce-9bf6-1692b1e561de.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02c19fee-bf32-4969-8ba4-7e996f1f9f3a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0d4f4313-566e-4de4-96c2-e2879a2846ce.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f1dc462-55cf-4c50-9ffe-16e1cec3cb79.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03f95b1e-3378-4ccc-aa69-fdb7dd4d988a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b4511a5-9af4-411e-aad9-f005d318cf66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b6d67d6-5a6a-4a8c-ba05-87a6c00d6c08.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d2ed7a9-979d-4508-bc79-1b0c77693111.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e3fcb29-79d1-43ff-a5e3-25d4e7c688cb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11a4b83b-8aa4-44af-a286-d15b40363e40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/046a9f1a-abb6-4e75-94f5-a98a197a3ee9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/115b5f8f-d8e5-4063-b8d6-db51757b2d9e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b111931-60e8-4281-8f76-a7181ae96837.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/296b0b03-c75b-41f0-8bff-1dde57a80e22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/238375d8-0b30-4ae7-813a-fd60bf865f40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ba8217-4fcc-4da8-a748-476260d6b3c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/308bc6d6-3d67-45ea-9764-2b1fc6bd2244.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d83e053-34b9-4937-a402-6794429f6d1b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/033af663-f044-43ab-a569-298cc4bf37bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bbcf539-6aaf-4511-9b60-a25806e66b99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e19a268-04c6-4a37-8bd5-e573a5e20317.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d3af918-bbac-4859-a6e0-4497599334dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29f74eff-c4f5-49d7-9ef8-fdb051100539.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1b72754-10ab-492b-ad36-78a4b16365eb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ac44ae-ccb4-48a7-91e8-7541f7527ff5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1368a45a-8fdf-4ae1-9d41-323dc06810ca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2170ee5b-c39b-4bfb-873f-92eafa183b4d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/bfecd96e-8826-4936-b01b-86cdb2004f06.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b435cbd-9ef2-4f8e-b2a0-39cad1fd1962.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb503bd-dd72-4ea8-9cde-c908bc1d8ea1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22a25fe8-7b6d-4c13-8996-c1518515473a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/010355fd-a8c0-4503-993e-16412a3b8136.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23e28b99-87b1-4f7e-a519-a5f14ff0a2c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/285b5785-cab1-4713-b345-51dc7e5bde93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b052bac-24c6-41f2-8907-6c4788aa1e18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b301603-0de0-4c9c-89b4-81b91053e9ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21111847-5b1d-416c-8561-5863463d214b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/036a4964-81d7-4d80-8511-5ad2d77f479e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1248f215-6948-4e7d-a320-13f50ca31f23.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00679577-c370-4aff-ab2b-fc4846c3eabb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12e4ed21-07e3-471c-9b2d-e71b128d3fde.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/131d0246-5f29-49a9-918a-d4f545500e38.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10cdb6ec-b1e9-45ec-a3f3-2364dd30346b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/217d4bfe-ddf4-4e2e-9fb1-f967c67a12c9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27e2e08f-207c-4534-8da7-412fb7868a8a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ba3df76-d959-414f-b466-4bc0b4f41135.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22269d6b-6acb-455d-a5c9-85e122cc452b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25b057bc-7363-4904-81f3-92c50d94486f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f1136f7-3b32-49c3-bc9e-1b34be1b330b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c682991-b914-4b6f-b592-9ff8dba1b6c6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/207108d9-45b6-42a0-a967-d15cc7c3bf73.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e9a0009-4464-4f18-bff5-8dae9645ae6a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0298e825-f153-4c95-a244-e24060d28bc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03b045bf-4b5e-4530-817d-64c5973a57c4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0471814-5d65-4868-94cb-e9ff37439619.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b419ca4-0ce1-4eba-a59f-dfc24b74aabf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/124cea62-1b6c-445b-b34c-99e6979d0316.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/057e820a-bd8e-4c56-8713-08710d3b683a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22bc8cc0-b7eb-487e-94ec-cdec71aff3f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20da1944-1714-4170-a08a-8b82c0788ad5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0c629fa-2d12-4534-a792-a70e1f6c967e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/126d9f1a-7dfe-4616-a917-57499b15d9bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d5680e-aca6-4a97-9e07-2302a66e969f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3038ffea-6002-410e-86ec-f59a5a306526.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/234e2082-098d-48fa-933f-e311d7bf3439.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27fce610-8145-4fb1-85dd-927e89c6cb53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0114657d-6647-492a-9494-110ba43e4135.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21f9f4de-27e2-4324-91cf-2871fe2a670c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/008102ab-5ea6-414d-bff1-9f55d148a80d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1da29452-a122-4a5b-b10a-3c43ce5f4dd6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eec7e74-4d8e-496b-bf47-81f86547ecf4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f162616-cc4a-46fe-a7a9-3637fa8889f5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21997496-9bae-4fca-b742-032e333f6e0d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2073e3a8-945c-4e76-b911-1d79a25cd683.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2696d094-0bf0-47b5-bf0a-13bbb16a03be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14b8f48d-f637-47dc-8d93-5ffb65ca2e18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/014647d1-a977-4bfe-9f35-869b168ea0fb.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037baafe-07de-49e7-ae6b-2fac90640f0b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25a9c27c-9351-4821-bd8d-6582ef859472.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/006081fc-cd84-4675-828a-784d2521fcc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dfede2e-48be-42ec-aa22-d81d01df0e37.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/104d7ee9-0ff7-48fa-a911-c8b3343e3459.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/027301a0-cb61-4431-8736-503d0c23cd48.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b07d941-e451-4ec8-8c64-f9fa43d5203c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2539614e-1dc5-4ef7-8381-7f113b5fabc2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c00d549b-7fef-49c1-a400-39e4724496f4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11efea2c-2129-432f-8478-7877d3b5952d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cfda55a-6021-4740-a2cf-89abb2909762.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1de7a597-8d42-4eba-951c-f046343b1e99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00c67fbc-35f6-4058-88b4-4bfad19014ec.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1330177-9ef2-410c-a3ee-f7c1cabeddd1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00ca48ec-39b3-4650-80ed-1fab342aba0e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28b2a582-b3b6-493b-91a9-110747a706db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cc95db5-41a8-47d6-9bee-de5c9490b623.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/266490ca-ce52-4f5b-92ff-082dae7967c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/011df306-5ca7-442e-bd54-f05820d84396.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f70a977-7222-4952-9ab3-7e1e03bab09c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1be4b082-bf7c-4380-9650-e7c6bb7e6857.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c766749-0a34-431a-929b-06a3f0c6752d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cf1426e-9663-4c08-b37e-960e53f1225f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/112c8a69-cfec-425c-b9d9-fe07a0fd4ca7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23606f99-638f-4a8a-94a2-9f6288a87d07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04170f9f-5d56-4ef7-9960-0afe2b50f778.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1106f9aa-23eb-44b5-b9c9-6a83c6a3c0bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d8b52bf-231d-4b4f-8405-6a81a1d19583.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b1d3619-3d81-4d7a-8a39-69daeb1982df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c028bb45-6dbc-4152-9bf5-3050e393c198.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/3024f1ab-d681-4432-a5c9-8ce3dd27073a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b011c9d-3bc6-42ad-94be-bd7afe0ec0bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ede5f6e-d575-4e09-9381-5a3da66540fd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26e7295a-4039-463f-974f-e6402e5c9fa0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ae28df1-2084-4000-9327-177953f4b18c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0000a175-0e68-4ca4-b1af-167204a7e0bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fdd1ada-bbfc-4466-afc6-93a1f26446ae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/257f3de7-2f8f-4dba-a0e7-37fc3e6cc018.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00af3668-1970-4f65-a292-525d2c5aed5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a960408-21c0-4b5f-a093-2ea4a94a2258.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d9a0d40-8406-4888-a727-7dd02e0b21aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ea43515-d423-454c-b8da-a3b191e14a96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13da7928-b24e-412f-8ac5-893da3435df8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e7aa49e-31b7-43b3-9262-88ae746071c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/136f6abf-1300-4b93-9b5f-9dd7770f4c97.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f730e9b-ed3f-411a-8966-966783894e07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a31df3c-5131-4622-b63a-be9a058837bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26aff776-ff9d-40f2-b899-6b88f1355506.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c88925-9d98-47bb-ac8d-2522fae2c565.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a0309e4-762b-4b64-9e2c-0f16dc4d5381.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b001299-52d5-4af2-a49e-32adb7df1837.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/038cd87f-d57f-4db6-9548-879dc697d656.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fc3831a-7b78-48c5-90c1-af8971ee9eae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ed08f16-e100-463c-adf1-3efbe99aae0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/216356d5-711f-4358-b4ac-41468a70f96f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c6cdd43-a38a-4464-b012-bc0eb9e73fd0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14e27811-f26a-4e21-a82b-1a5944aeb6bc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20702407-dfbc-49b8-9324-311961fb1ee2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c00b393c-87f3-46da-895b-823c290b0171.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23a26c71-73e0-4cb2-b2ae-661a04c696dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1aff3b6e-27a7-480a-a8bd-3dc13a84a4b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fe44d47-5ec2-48e5-bcfc-7376a0bad13f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21e696f2-9d4e-42b0-8fe6-e4e59e667476.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30c0fddd-fda9-4889-8e7b-b13602c6d1b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1263a9b3-0492-402e-a152-42a024955a68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19b00444-7cea-4504-a557-bd207e023377.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04749fa3-5cb1-4f37-8156-f73a2083b392.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21ea7be5-b0a4-4d96-b56d-8288dd0292cd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21cc46d4-b5a8-4296-93ba-0f16bf88b30b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04eaa6de-99d9-4a90-bd0f-3fb9f486171b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0110317f-73a0-43db-aace-49f4aabd781f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14f199ad-e0d2-4360-a186-5aaaa652f3c7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13f76876-328a-4b88-ac58-a3c1fe15b3b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c10f2a35-afdd-4b1a-ade3-40500fa39fef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fcda80a-628d-48fa-929f-60d097e468b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2289c8c0-9f7a-4709-8ee4-38f5e41612d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c96653c-ddeb-419a-ad37-8836eab89773.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f12b716-4c79-42d2-86cf-d1954ccef413.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14291892-506f-4f4d-8dca-57f456d2ba57.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d2633d2-b5a5-4f56-901e-6599355cebd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0316721f-901b-4828-a1ed-c7ab71a0141d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f96b5e6-6714-4613-af33-edfbdbc1e0bd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/299e8dc9-1ddf-4bb9-bbf9-6545506e10a7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10d51e48-d4c4-4a73-993d-0de2fd798444.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d0cb51a-83ec-42eb-b44e-f7d7cb30ada1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/251ecdcd-70e7-4aa2-91f6-208d61a6b41e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13d09f58-c52d-47bd-bfdc-c72321fdeb3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/045d09ff-cc44-4c5f-952f-b83373bb2d93.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1018a3fa-be7c-4839-8cb4-a604a335f237.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f061b2f-cab2-44da-b3d8-7aa3a834cd98.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10a59d8f-d790-44b2-8007-b9f34bdf482a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f164d6c-eb0b-45f1-97d9-bd261ccb52b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10fc0af7-85b4-48e9-b632-534c7a0d53ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0022bb50-bf6c-4185-843e-403a9cc1ea80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ff9da5a-f294-4566-87e2-924899770072.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e34e10c-62b2-48b0-bd44-ccb690b3f461.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02ed876f-f335-482d-af13-0d0b8af51774.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad85dcd-d179-4e98-b9b8-a44d8d10165b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/267e8c40-5334-4761-afd5-37052bf0c1aa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24d6149a-a03a-40dd-b495-d35d7d7babda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13c01189-82f2-4567-98c5-f0fb9ac3c80d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23212cd1-662c-442e-9e1f-5364e2c78384.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2853a995-743e-43d8-9ea4-068ffc6bf420.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1482acb5-2d2d-48e7-a953-4f1cd72fd37a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10aea5ae-b0be-48e1-87cd-477c15a85772.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b6e20c3-5ff6-4e86-8856-2f62539591b9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0cfb46bb-a283-452f-80eb-1ed0404c9eda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/274c940b-9c97-4aaa-a557-f8b97de6c268.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22dc3067-7c66-4ae2-adb1-cf4754359d14.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d6778ad-3faf-4d8a-9e90-a5aed71ac75e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/037eff4a-1840-47bf-92d3-98898b91165d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/112585e2-d08f-4740-8e17-6081789d5a76.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0db51798-2837-45d6-94a5-1459b8f63b1a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/016d6d63-e32a-4df0-ad43-e42f808ab480.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0550c5d5-941c-4995-9276-6401a8a4ffbe.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c01c3753-a43e-4640-add6-7c1ee6740ade.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/138ff8b1-a35f-4187-a76b-3eaa01407591.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ae5df43-18cd-4f4e-a6a8-f6b6be9eebba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0dd973cd-f375-447c-8c64-bc61a11ad0f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bc0fd91-931a-446f-becb-7a6d3f2a7678.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1290a3a2-1908-4aa4-9ec9-60eb79efac1e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f6a82fc-fe20-40bb-8be8-b4ee2a015e18.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2215b907-f15e-4b26-ba95-e9eebcaef2b6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b64ab26-c9ab-44d2-9916-2ea92beb668b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ef5e498-d7e4-438e-a957-3acb44e05372.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/003206b4-bd4a-4684-8d49-76f4cb713a30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21ab7839-a62c-4829-bde0-378d0ca4cc21.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d67232-2d92-4486-b9bb-f8355f5d2a74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f14fadb-ed1c-4b2e-88e7-9dd525c53542.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28bc3690-8ccf-4baa-8237-fbbd4b8ece72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b22da42-be15-4905-bfb1-5f17a02c18b2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1116dd1a-1427-4d22-b80c-08cc68764041.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0eb58a9b-834f-4962-abfa-5c13b8a4b3cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27161478-e5ca-40aa-98f6-777a59e96200.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c826ec1-41d0-401b-ada3-0f92d194c716.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f5e84c1-2060-433a-8184-493e8d1f22b7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1af93d1-2cb6-47f0-a44a-fe48c60d4629.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c957bda-4e33-4558-94a7-f911fb2c0944.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/284e03e6-1cd7-46bf-aee4-da994c42cfc8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f589606-445c-4933-a766-fcba79020784.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a12eff-c4ee-4ce1-bcf8-40ec40cccd0f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1afe8c37-3a72-43c5-b800-4ad5d3051df0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/107c7217-0346-4614-9b31-f6649b87ff54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20e6c681-9559-410b-abf3-cc0b0d71889d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23c0da4c-d481-45d5-8cf8-ac77f20e424c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/265f1a4a-fee4-447e-9709-0fff15f2255b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27430d2f-310f-42ac-94a1-6682a267b2cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00e42241-12a0-490a-b856-db3e4ab41104.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cdd0947-ec15-4210-9abe-3fd3d6cf4729.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2316b90f-0098-471d-95e8-dd71c7e9cbda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ad5385c-07a9-4f5d-aaad-83774ec96692.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c002e66e-aaf3-46ad-b1ce-1ab12f795c80.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0597c805-8002-459d-a02a-24240a5c18cf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/139086b8-d4bf-4ee5-8027-cb405da2c2ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/200b01ab-7e6e-4790-959e-d569c278f16a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a0203a7-b56f-40bf-9cce-cba5163eb737.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23870b78-01de-4d6b-be10-e3c605bea4d8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cef7047-89ac-4a3b-84c5-9641933c6bd5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d54fc4c-4642-433e-ae06-e595adb6c185.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30a3b04b-6164-40ac-9361-b0beb0ffe663.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bc676d8-9b52-46ac-bf77-40a8846326a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/310cda77-3c07-4630-b4be-663fde5a6db5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f74b11c-e4b0-4142-b150-dec87d0bfaef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/133f1124-15d1-406f-aa63-2975f8a3cb90.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a968f6-bd26-4ef1-90b7-ca75df777e56.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22741fb4-55ab-408d-b782-6038eb0fcb54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02462e7b-800c-4b19-904b-0a1fb80f4fc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/298e22d6-f3e7-4f3d-8196-d95f7c3f992b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce9bd15-5511-4fc8-865d-d23ab1321bf8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1114eeb8-c035-42f4-a038-13a806a568ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13fcd1dd-4314-4c91-be62-292a1695b8ef.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f9a56fb-377a-4578-8944-3232679e8342.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bd3afa7-414c-431f-ad98-0d1b03f175b8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11463b21-b97a-4b0b-97e1-13ab4033dd22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce75763-641d-4901-810b-a7e09580574d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13da3cfc-5052-486f-81e8-0aec722a0759.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/30f09a8d-c8d2-416f-86cf-b56f5c99ea07.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ed3b831-2452-4598-809e-69bb6f40f69e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c13c5000-25a2-46a3-8dfe-469ac9e706a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fc7fea2-7b2e-4fe0-a74f-6f7e6ba86e4f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f98a34f-f901-4c3b-8861-492918155dc7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1227e8ba-2415-4463-864d-6a0fe8941bc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0435af1-0524-4d84-930a-eb55d2cc5cb3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2037ee0c-2b69-43fc-b155-efbd79c0d644.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/306da180-4249-4659-9ea6-1c2ed1455668.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0165543b-85d3-4dd2-9e93-6c5ab10f13da.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/235b24d7-70d6-4616-bd61-70379a2bbf68.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e07904d-b818-4385-9e43-9f2e36a9d41e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fcba0c2-b470-4d23-8701-f4d2fdfd700f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04420ae7-2c04-4c42-a0a9-58f12e211a50.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0360a37c-7f05-4809-a645-db5c0e790145.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b76e6cb-fe51-40da-bfc6-54253dee41f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d5d0cf0-d3e3-4919-af0d-2ee56f31e0e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/206c3b5d-8229-4a9f-b00f-3f62c5949de9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10a49eb0-7c77-4c65-b7bf-a35170c9e066.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ca201cb-8252-4a1a-a574-1143f72fdaa7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d153160-a838-4622-83fb-911078613c99.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/047dd82b-ca05-4952-95f1-cf68900ac1fa.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d697b2f-ce2e-403c-88c2-3759da1fe620.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00a221ac-da8f-4f61-8d4f-fc195143491d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b095207-1f70-4e5a-87e5-23c8666f266b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f6f5cb0-c537-4346-9300-98cf782d434f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b4555aa-bfe4-4bc5-aaee-8c4347d3cbb5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f4d3c32-1bd2-4fa9-807f-6461601cc7c0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1132c48a-df90-4cc0-b40d-7ba0709458a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e5af9e1-d540-4ee5-8102-aeff3c69026e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a116cc4-dbdc-4f15-b5b4-9fd96c17392e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2716e765-3e72-4a19-9486-ae163413958c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2742d025-e576-4659-b3a3-3c9e8ca06136.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19c30ace-ee4a-4fb1-a067-a8548428996f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c0eec2-1878-4f9f-b73a-e3bee3a62173.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff48706-9186-4d26-a805-02c46e219833.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0591bb41-c6f2-4c5d-afbb-4816867c5305.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e55da7d-3425-4ab0-8648-ba4bed7d95f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e9ab6d7-8cf5-48dc-a30b-afcccfc339e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c010c077-36e0-4e44-ae67-c53d1a5992cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13783bf0-0c87-4434-a063-662b1a15d428.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1fd4f805-9860-4c13-821c-a7836fd1d90d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d8334fc-2356-4d28-ad50-1bfd79e677e2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d19b28-4b09-4071-a848-8ae64007b671.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04603933-3d07-4725-9d50-f4ff2302d7df.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/295ff681-9e3a-4516-b5c7-ae88015fd4e5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0a2978c-82f7-42e7-975d-c4eba156dfdd.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0da4074c-fa4b-4450-81b3-74282d6c49a6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2170fcb3-ac43-4128-a256-dc58c3f7381b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/302d8a19-5868-4286-be5d-a9be0b7310c1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c2352b7-a303-45cf-b085-3ac46b1e02ff.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a33c6eb-c153-4f8d-8742-2184f9860ac2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04c154cb-b57b-4b0f-9501-89a19da07a1c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/130a294d-b0ce-4602-a863-60720c12aa00.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/041a2204-51fb-4d23-8204-dd6a7a6f5ee3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ded0662-6615-4039-893f-f5d843be023f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a72fa32-fbd7-47e9-941a-a4e562b4a4dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e69c952-c3a8-492e-aa98-c3a8de18dc09.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14408cea-bb8c-42af-9478-e0e6e54dee3b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/23d304d3-1097-4687-b8c5-00eb8c2e35ad.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0d73fbe-80c5-44dc-94f8-85f757be171b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/13710b43-74f1-4c65-bc26-8163c363dc3d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a22ae7c-f7a3-411f-9c30-694d6e38ac7d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e064c00-ba9b-49ba-af5b-cf52d819604c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b5037ae-c15a-4d5f-93c5-4bffe67bf7f8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/31023556-644d-4c1a-9a94-fef5c5f52782.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/02eff1f9-5830-4e4f-a68e-822ac02047f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f5a23ae-f66e-4205-8c60-8da654adbab5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2767048d-aef9-4a2d-be21-f8009f4f9b7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/19d85ca1-c8e8-4638-943c-321b5116b01c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04644a8f-bd70-484a-a4db-7ea330c6177c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e917a81-5107-47f5-b67d-c3f2f84700fc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fb9236e-e8bd-4dbc-81a2-c062caafdf43.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fe24433-b547-4f79-819c-a0afa5cd2409.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0196bb90-2e5a-401b-bffb-7fd7258d6844.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ae4aec3-f102-47a2-94a3-a59503f450f7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d9b09ec-eaa7-47ac-9845-b4a98b90469b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e586366-2ff8-443d-b09d-341467680c12.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ec7d9ce-ff6e-4160-8c20-d6622096114b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c0957a54-79af-4505-a5de-c49c52e7c959.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f9bfecb-2f3d-4a23-b112-060db48248a8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d97e7c4-9d6f-4a59-9f1b-31cde03466e0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2ce40417-1531-4101-be24-e85416c812cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f7fe736-3806-4995-938b-46b86b764c2e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11f3fd57-b8c5-4345-8a32-d30b3316bf40.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/118e2eda-ca5c-467a-8f27-5cab723c3f46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11436729-e5c7-40a4-b7b2-bfec506b6fed.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c57f3c2-af21-40dd-a7b0-16b5c04c419d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2975cc3d-94de-47cf-b506-f91d0514d6ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11ec9b28-f8cb-4954-8701-32ca9356310e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2fed6de4-af54-4b45-a188-17ac855a7360.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f3d1b45-e5fd-462e-b52c-502926a00839.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d8495e4-e8f5-4755-acfb-7b7b68798fe6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/049d734b-adf3-4ae5-a955-c3e33139bb27.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/27575233-562c-4859-ab7b-a8a5ec213252.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11e27545-3213-4f18-a07d-2498ba7c505b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10d00463-dfa9-45b6-8869-9674a7773069.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f580263-ccbe-4b30-96cd-e1929ed5d873.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10dd06b3-dfd5-4bfb-b2d2-184e8fc4d9be.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21271204-1954-43bc-973b-63b896c17374.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d3442b4-85fb-42b5-a095-9b1fe2c4d371.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f875a43-1c65-4617-adfc-9f861a1f3fc4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1f5f2bb2-acc2-4c18-b6d5-212f9a9980b5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a17e36f-a43c-44f8-bf50-9d36f7d5cfae.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14cf8563-6ed2-4458-8659-cd2618a74f7e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1e505e44-d8e9-4fbe-bc3c-613c3671bbb8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03190b26-7d61-4cbc-abcb-bba18884254d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/049de5c2-a8c8-46c9-bc9e-cf206f320df8.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c7090f0-bb34-4fa8-8abb-978b0d8d3f84.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10712214-9adc-4f44-98d6-603aed45f496.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/14be3838-e1d9-4238-a1c2-55a5030fda41.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29048813-5b20-4aba-bfcb-8eed053e3e53.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1c8ddf66-81c8-4696-a02d-fbe18c19f50e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a0f4b00-5083-4a0c-a1e2-89e27468c9db.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2444fb77-294c-49ca-92f1-b79f09c06ee2.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2cafaa81-87f2-40e8-a7df-947de34103b3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2a0d2fa7-140c-49bb-ae85-4d6e597933e1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/002bcde0-d8da-4931-ab04-5d724e30261b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c7074c-e357-4032-b2e5-66a67d330545.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/21287f7f-c054-4a78-8afc-23fe395eb213.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2f27d72f-4e93-482c-b52e-d15db6e66d9a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b1135f1-c115-45d7-9e92-c2c9779e92b1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2b0bfba4-ae3c-41a8-9e21-c3053b896445.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03cc6b7a-4eef-46e3-98e0-fe3990325b36.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2289399a-783c-404b-ab3b-88345c3dd952.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26aff0c5-644d-4bde-9716-3b7605496da4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0f923d95-7046-44ed-8aa7-243c0b98c881.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/10fcfa38-7221-4801-8e56-2c6282c5a15a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c61626f-bbbc-4081-950a-e11463990eca.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/008ca187-f164-4a2b-b14e-29d4e16e3a66.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c10b53cf-2750-41c1-9ba6-b73598b2bc22.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e545167-0db9-44bd-acf2-ce879af3ebda.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/110b101c-2cb9-48ba-b0da-1a3b375dbc55.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d73dd5c-4fb7-4684-a64e-14f1bdbec9dc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2616499c-8097-43cd-8864-575ba5d4d932.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25de07ab-673c-4b13-a256-a10f603ade9f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24a4a55d-627f-4fa0-a894-555ce05dae0a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/26b4e5ff-cfa6-4b2a-b0cb-a431dd02ddd9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d54c292-668e-433d-bd79-a4575f8aa494.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1d023143-2c5b-448f-94e2-c140f47b10ab.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/28d1dd60-8594-4f78-b627-7bec5cc238f3.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/233f61aa-636d-47af-aada-db52a93dc9f6.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2444c28b-56eb-40fa-bc95-2f007e7e39a0.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03188698-bad7-46f7-94d3-5487b2c67b8a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2bdb8628-8fea-4b99-a12f-c09f1afea857.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1e3615c-cf3a-48e7-a20e-05244bba5292.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/25b8d29b-958e-45a5-8b30-1f56404aea94.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d7f5392-f56e-413a-9129-fa51a6189d26.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e3ecfed-036f-4e83-97a2-e25a64e525cc.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff240ca-a693-4a0e-926f-cc1e322e1569.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0e8640ab-2f0b-461d-976a-7d86f128b57a.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0305bbcb-4998-4020-9a9f-b32f448e30bf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29723dd7-47a0-4ec9-ace9-a1130e604d60.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24579c4e-f0a8-4a69-b3b2-17867dc928d9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0fb6b2ba-4aa1-4e18-b3b0-2248e7836ef7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0586c1ed-1109-4d8b-baf7-a9fcd65dccd4.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/138ccb35-b073-4f73-9e53-9b4f1f463e9c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c675f6f-eb9c-487e-a89d-a4e071233d72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00b4e593-fcf8-488c-ae55-751034e26f16.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2aa79908-4a8e-4a7e-bb58-804ccb16dba5.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/00fde673-62b3-4a5c-9b9a-6c1ec8f66910.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/20f38c57-8a12-493d-90ab-4c6c7f0798ba.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1a0ca228-5501-49f8-85e6-c5e66ecd2d74.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1e88810-9e4e-4f39-9306-8d314bfc1ff1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2e523af9-ce17-4d76-bf38-8e9c075e0474.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/117c95a3-afca-4d4d-9a51-480d92016472.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2d3cfc9f-d0b7-4c6b-882e-cdde29b92bcf.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/22ef58eb-6d35-4872-91b3-3eaf3a4b1c6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29661bc0-02d5-47c0-bbd6-61ea4fae75d7.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2c6b6907-5c4d-491b-87ec-6814ec4b751b.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11c194f2-c78e-4a1d-aed4-e1fdb7cfba3f.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/018cb7c3-0ec3-484d-a6a3-bd7c376605d1.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04c755a9-47f5-47ac-ad3d-78534aecf983.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1401804c-24d2-4259-b008-fae5525d9b83.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/29c436ff-bbaa-4ff9-ba0f-40fb7a521c54.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1065459b-6495-4341-9e2d-b471488c3256.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/215b006e-9bb8-4056-b3fc-aa097f5ff4b9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/013c572e-c377-431e-a4b8-34f22f2f8a30.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/04384b80-0b9e-4744-85e4-f5184fc073e9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1ff93860-0196-44f1-a9a5-4210fe7e5d96.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/289578c9-2d3b-4571-ba3a-5b7e2b5cbd6e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/0ffb34e5-f3c7-49c9-b9cd-5b73354f562d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/24fe325a-be98-405e-bbf5-cbe64aa82e5c.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/12139f3f-8b65-4307-937a-bbb105408e82.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/2140f05c-c1df-4535-ab25-2792522ad89d.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/104c0c31-7fd6-4529-a126-2832f343db46.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/03a75f93-bdfb-4e5a-89f3-548b04fdbb5e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/1b4e6e92-25fe-4923-9d1d-c2b45d8cac72.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/11cc923f-ec9a-49c5-b4a3-ceb3c6da3273.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/01594bc6-16eb-4214-b2b2-4cf2154dbab9.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/c1ccf646-db01-4175-84d4-e794c4e1e14e.dcm
/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_test_images/253a2ef9-6cd7-423f-a7b4-ed5dedffb8cd.dcm
#Step 2: Map training and testing images to its classes
# use your google drive or physical path of your computer
# Load the training and testing CSV files
train_df = pd.read_csv("/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_labels.csv")
test_df = pd.read_csv("/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_sample_submission.csv")
# Create mappings for training images
train_image_class_map = {}
for index, row in train_df.iterrows():
patient_id = row['patientId']
target = row['Target']
train_image_class_map[patient_id] = target
# Create mappings for testing images
test_image_class_map = {}
for index, row in test_df.iterrows():
patient_id = row['patientId']
# Placeholder for test targets (actual targets are not available in sample submission)
test_image_class_map[patient_id] = 0 # or any default value
print("Training Image to Class Mapping:", list(train_image_class_map.items())[:5]) # Print first 5 items
print("Test Image to Class Mapping:", list(test_image_class_map.items())[:5]) # Print first 5 items
Training Image to Class Mapping: [('0004cfab-14fd-4e49-80ba-63a80b6bddd6', 0), ('00313ee0-9eaa-42f4-b0ab-c148ed3241cd', 0), ('00322d4d-1c29-4943-afc9-b6754be640eb', 0), ('003d8fa0-6bf1-40ed-b54c-ac657f8495c5', 0), ('00436515-870c-4b36-a041-de91049b9ab4', 1)]
Test Image to Class Mapping: [('0000a175-0e68-4ca4-b1af-167204a7e0bc', 0), ('0005d3cc-3c3f-40b9-93c3-46231c3eb813', 0), ('000686d7-f4fc-448d-97a0-44fa9c5d3aa6', 0), ('000e3a7d-c0ca-4349-bb26-5af2d8993c3d', 0), ('00100a24-854d-423d-a092-edcf6179e061', 0)]
#Step 3: Map training and testing images to its annotations.
train_bbox_df = pd.read_csv("/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_labels.csv")
train_bbox_df.head()
| patientId | x | y | width | height | Target | |
|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 |
train_bbox_df.shape
(30227, 6)
train_bbox_df[train_bbox_df.isnull().any(axis=1)].Target.value_counts()
| count | |
|---|---|
| Target | |
| 0 | 20672 |
train_bbox_df[~train_bbox_df.isnull().any(axis=1)].Target.value_counts()
| count | |
|---|---|
| Target | |
| 1 | 9555 |
train_bbox_df.Target.value_counts()
| count | |
|---|---|
| Target | |
| 0 | 20672 |
| 1 | 9555 |
label_count=train_bbox_df['Target'].value_counts()
explode = (0.01,0.01)
fig1, ax1 = plt.subplots(figsize=(5,5))
ax1.pie(label_count.values, explode=explode, labels=label_count.index, autopct='%1.1f%%',
shadow=True, startangle=90)
ax1.axis('equal')
plt.title('Target Distribution')
plt.show()
print("Any Unique records exist in PatientID Column:" ,train_bbox_df['patientId'].is_unique)
Any Unique records exist in PatientID Column: False
duplicate = train_bbox_df[train_bbox_df.duplicated(['patientId'])]
print("Duplicate Rows based on PatientID :", duplicate.patientId.count())
# Print the resultant Dataframe
duplicate
Duplicate Rows based on PatientID : 3543
| patientId | x | y | width | height | Target | |
|---|---|---|---|---|---|---|
| 5 | 00436515-870c-4b36-a041-de91049b9ab4 | 562.0 | 152.0 | 256.0 | 453.0 | 1 |
| 9 | 00704310-78a8-4b38-8475-49f4573b2dbb | 695.0 | 575.0 | 162.0 | 137.0 | 1 |
| 15 | 00aecb01-a116-45a2-956c-08d2fa55433f | 547.0 | 299.0 | 119.0 | 165.0 | 1 |
| 17 | 00c0b293-48e7-4e16-ac76-9269ba535a62 | 650.0 | 511.0 | 206.0 | 284.0 | 1 |
| 20 | 00f08de1-517e-4652-a04f-d1dc9ee48593 | 571.0 | 275.0 | 230.0 | 476.0 | 1 |
| ... | ... | ... | ... | ... | ... | ... |
| 30209 | c18d1138-ba74-4af5-af21-bdd4d2c96bb5 | 295.0 | 473.0 | 133.0 | 176.0 | 1 |
| 30215 | c1cddf32-b957-4753-acaa-472ab1447e86 | 766.0 | 475.0 | 135.0 | 213.0 | 1 |
| 30220 | c1e73a4e-7afe-4ec5-8af6-ce8315d7a2f2 | 316.0 | 504.0 | 179.0 | 273.0 | 1 |
| 30222 | c1ec14ff-f6d7-4b38-b0cb-fe07041cbdc8 | 185.0 | 298.0 | 228.0 | 379.0 | 1 |
| 30226 | c1f7889a-9ea9-4acb-b64c-b737c929599a | 233.0 | 424.0 | 201.0 | 356.0 | 1 |
3543 rows × 6 columns
Class_labels = pd.read_csv('/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_detailed_class_info.csv')
Class_labels.shape
(30227, 2)
Class_labels.head()
| patientId | class | |
|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | No Lung Opacity / Not Normal |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | No Lung Opacity / Not Normal |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | No Lung Opacity / Not Normal |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | Normal |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | Lung Opacity |
Class_labels.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 30227 entries, 0 to 30226 Data columns (total 2 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 patientId 30227 non-null object 1 class 30227 non-null object dtypes: object(2) memory usage: 472.4+ KB
Class_labels['class'].value_counts()
| count | |
|---|---|
| class | |
| No Lung Opacity / Not Normal | 11821 |
| Lung Opacity | 9555 |
| Normal | 8851 |
label_count=Class_labels['class'].value_counts()
explode = (0.01,0.01,0.01)
fig1, ax1 = plt.subplots(figsize=(5,5))
ax1.pie(label_count.values, explode=explode, labels=label_count.index, autopct='%1.1f%%',
shadow=True, startangle=90)
ax1.axis('equal')
plt.title('Class Distribution')
plt.show()
Each patientId corresponds to a unique image class as per below depending what is the current state of the patient's lung as per below,
- 'No Lung Opacity / Not Normal'
- 'Normal'
- 'Lung Opacity'.
def get_feature_distribution(data, feature):
# Count for each label
label_counts = data[feature].value_counts()
# Count the number of items in each class
total_samples = len(data)
print("Feature: {}".format(feature))
for i in range(len(label_counts)):
label = label_counts.index[i]
count = label_counts.values[i]
percent = int((count / total_samples) * 10000) / 100
print("{:<30s}: {} which is {}% of the total data in the dataset".format(label, count, percent))
get_feature_distribution(Class_labels, 'class')
Feature: class No Lung Opacity / Not Normal : 11821 which is 39.1% of the total data in the dataset Lung Opacity : 9555 which is 31.61% of the total data in the dataset Normal : 8851 which is 29.28% of the total data in the dataset
duplicateClassRowsDF = Class_labels[Class_labels.duplicated(['patientId'])]
duplicateClassRowsDF.shape
print('No of dulicate rows: ', duplicateClassRowsDF.shape[0])
No of dulicate rows: 3543
duplicateClassRowsDF.head(5)
| patientId | class | |
|---|---|---|
| 5 | 00436515-870c-4b36-a041-de91049b9ab4 | Lung Opacity |
| 9 | 00704310-78a8-4b38-8475-49f4573b2dbb | Lung Opacity |
| 15 | 00aecb01-a116-45a2-956c-08d2fa55433f | Lung Opacity |
| 17 | 00c0b293-48e7-4e16-ac76-9269ba535a62 | Lung Opacity |
| 20 | 00f08de1-517e-4652-a04f-d1dc9ee48593 | Lung Opacity |
Class_labels[Class_labels.patientId=='00c0b293-48e7-4e16-ac76-9269ba535a62']
| patientId | class | |
|---|---|---|
| 16 | 00c0b293-48e7-4e16-ac76-9269ba535a62 | Lung Opacity |
| 17 | 00c0b293-48e7-4e16-ac76-9269ba535a62 | Lung Opacity |
#Step 3: Map training and testing images to its annotations.
# Load the bounding box annotations
#train_bbox_df = pd.read_csv("/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_labels.csv")
# Create mappings for training images to bounding boxes
train_image_bbox_map = {}
for index, row in train_bbox_df.iterrows():
patient_id = row['patientId']
x_min = row['x']
y_min = row['y']
width = row['width']
height = row['height']
# Check for NaN values in bounding box coordinates
if pd.isna(x_min) or pd.isna(y_min) or pd.isna(width) or pd.isna(height):
continue # Skip rows with missing bounding box information
# Store the bounding box information as a tuple (x_min, y_min, width, height)
if patient_id not in train_image_bbox_map:
train_image_bbox_map[patient_id] = []
train_image_bbox_map[patient_id].append((x_min, y_min, width, height))
# Example usage: Accessing bounding boxes for a particular image
# Print the first 5 patient IDs and their associated bounding boxes
for patient_id, bboxes in list(train_image_bbox_map.items())[:5]:
print(f"Patient ID: {patient_id}, Bounding Boxes: {bboxes}")
# Note: Test images do not have corresponding bounding box annotations in the sample submission file
# Thus, there is no mapping to create for test images in this step.
Patient ID: 00436515-870c-4b36-a041-de91049b9ab4, Bounding Boxes: [(264.0, 152.0, 213.0, 379.0), (562.0, 152.0, 256.0, 453.0)] Patient ID: 00704310-78a8-4b38-8475-49f4573b2dbb, Bounding Boxes: [(323.0, 577.0, 160.0, 104.0), (695.0, 575.0, 162.0, 137.0)] Patient ID: 00aecb01-a116-45a2-956c-08d2fa55433f, Bounding Boxes: [(288.0, 322.0, 94.0, 135.0), (547.0, 299.0, 119.0, 165.0)] Patient ID: 00c0b293-48e7-4e16-ac76-9269ba535a62, Bounding Boxes: [(306.0, 544.0, 168.0, 244.0), (650.0, 511.0, 206.0, 284.0)] Patient ID: 00f08de1-517e-4652-a04f-d1dc9ee48593, Bounding Boxes: [(181.0, 184.0, 206.0, 506.0), (571.0, 275.0, 230.0, 476.0)]
train_df.head(5)
# Merging the Dataset - 'labels' and 'class_labels':
training_data = pd.concat([train_df, Class_labels['class']], axis = 1)
training_data.head()
| patientId | x | y | width | height | Target | class | |
|---|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 | Normal |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 | Lung Opacity |
fig, ax = plt.subplots(nrows = 1, figsize = (12, 6))
temp = training_data.groupby('Target')['class'].value_counts()
data_target_class = pd.DataFrame(data = {'Values': temp.values}, index = temp.index).reset_index()
sns.barplot(ax = ax, x = 'Target', y = 'Values', hue = 'class', data = data_target_class, palette = 'Set3')
plt.title('Class and Target Distrubution')
Text(0.5, 1.0, 'Class and Target Distrubution')
# Number of duplicates in patients:
print('Number of unique patientId are: {}'.format(Class_labels['patientId'].nunique()))
Number of unique patientId are: 26684
# import pydicom as dcm
# def inspectImages(data):
# img_data = list(data.T.to_dict().values())
# f, ax = plt.subplots(3,3, figsize=(16,18))
# for i,data_row in enumerate(img_data):
# patientImage = data_row['patientId']
# # dcm_file = '/content/stage_2_train_images/'+'{}.dcm'.format(patientImage)
# dcm_file = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'+'{}.dcm'.format(patientImage)
# # Use dcmread instead of read_file
# data_row_img_data = dcm.dcmread(dcm_file)
# modality = data_row_img_data.Modality
# age = data_row_img_data.PatientAge
# sex = data_row_img_data.PatientSex
# data_row_img = dcm.dcmread(dcm_file)
# ax[i//3, i%3].imshow(data_row_img.pixel_array, cmap=plt.cm.bone)
# ax[i//3, i%3].axis('off')
# ax[i//3, i%3].set_title('ID: {}\nModality: {} Age: {} Sex: {} Target: {}\nClass: {}\Bounds: {}:{}:{}:{}'.format(
# data_row['patientId'],
# modality, age, sex, data_row['Target'], data_row['class'],
# data_row['x'],data_row['y'],data_row['width'],data_row['height']))
# label = data_row["class"]
# if not math.isnan(data_row['x']):
# x, y, width, height = data_row['x'],data_row['y'],data_row['width'],data_row['height']
# rect = patches.Rectangle((x, y),width, height,
# linewidth = 2,
# edgecolor = 'r',
# facecolor = 'none')
# # Draw the bounding box on top of the image
# ax[i//3, i%3].add_patch(rect)
# plt.show()
# # Function to preprocess and visualize images
# def preprocess_and_visualize(image_path, target):
# # Load DICOM image
# ds = dcm.dcmread(image_path)
# image = ds.pixel_array
# # Normalize pixel values to [0, 1]
# image = image / 255.0
# # Display the image
# plt.figure(figsize=(6, 6))
# plt.imshow(image, cmap=plt.cm.gray)
# plt.title(f"Image Class: {target}")
# plt.axis('off')
# plt.show()
# # Function to preprocess and visualize images
# def preprocess_and_visualize(image_path, target):
# # Load DICOM image
# ds = dcm.dcmread(image_path)
# image = ds.pixel_array
# # Normalize pixel values to [0, 1]
# image = image / 255.0
# # Display the image
# plt.figure(figsize=(6, 6))
# plt.imshow(image, cmap=plt.cm.gray)
# plt.title(f"Image Class: {target}")
# plt.axis('off')
# plt.show()
# sample_patient_ids = list(train_image_class_map.keys())[:5]
# # Replace with the actual path to the images
# image_dir = "/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images"
# for patient_id in sample_patient_ids:
# image_path = os.path.join(image_dir, f"{patient_id}.dcm")
# if os.path.exists(image_path):
# target = train_image_class_map[patient_id]
# preprocess_and_visualize(image_path, target)
# else:
# print(f"Image not found for patient ID: {patient_id}")
#view images with target is 1
# inspectImages(training_data[training_data['Target']==1].sample(9))
#view images with target is 0
# inspectImages(training_data[training_data['Target']==0].sample(9))
#check duplicate and remove
one = training_data[training_data.Target == 1].drop_duplicates('patientId').shape[0]
zero = training_data[training_data.Target == 0].drop_duplicates('patientId').shape[0]
total = training_data.drop_duplicates('patientId').shape[0]
print(f'No of entries which has Pneumonia: {one} i.e., {round(one/total*100, 0)}%')
print(f'No of entries which don\'t have Pneumonia: {zero} i.e., {round(zero/total, 0)}%')
_ = training_data.drop_duplicates('patientId').drop_duplicates('patientId')['Target'].value_counts().plot(kind = 'pie', autopct = '%.0f%%', labels = ['Negative', 'Positive'], figsize = (10, 6))
No of entries which has Pneumonia: 6012 i.e., 23.0% No of entries which don't have Pneumonia: 20672 i.e., 1.0%
print('Number of nulls in bounding box columns: {}'.format(training_data[['x', 'y', 'width', 'height']].isnull().sum().to_dict()))
Number of nulls in bounding box columns: {'x': 20672, 'y': 20672, 'width': 20672, 'height': 20672}
training_data.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 30227 entries, 0 to 30226 Data columns (total 7 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 patientId 30227 non-null object 1 x 9555 non-null float64 2 y 9555 non-null float64 3 width 9555 non-null float64 4 height 9555 non-null float64 5 Target 30227 non-null int64 6 class 30227 non-null object dtypes: float64(4), int64(1), object(2) memory usage: 1.6+ MB
bounding_box = training_data.groupby('patientId').size().to_frame('number_of_boxes').reset_index()
train_labels = training_data.merge(bounding_box, on = 'patientId', how = 'left')
print('Number of patientIds per bounding box in the dataset: ')
(bounding_box.groupby('number_of_boxes').size().to_frame('number_of_patientId').reset_index().set_index('number_of_boxes').sort_values(by = 'number_of_boxes'))
Number of patientIds per bounding box in the dataset:
| number_of_patientId | |
|---|---|
| number_of_boxes | |
| 1 | 23286 |
| 2 | 3266 |
| 3 | 119 |
| 4 | 13 |
Thus, there are 23286 unique patients which have only one entry in the dataset.
There are bounding boxs in the dataset are as per below,
- 3266 with 2 bounding box
- 119 with 3 bounding box
- 13 with 4 bounding box coordinates.
# Merging the two dataset - 'train_labels' and 'class_labels':
training_data = pd.concat([train_labels], axis = 1)
print('After merging, the dataset looks like: \n')
training_data.head()
After merging, the dataset looks like:
| patientId | x | y | width | height | Target | class | number_of_boxes | |
|---|---|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 | Normal | 1 |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 | Lung Opacity | 2 |
print('After merge, the dataset has {} rows and {} columns.'.format(training_data.shape[0], training_data.shape[1]))
After merge, the dataset has 30227 rows and 8 columns.
import pydicom as dcm
data_row_img_data=[]
def inspectImages(data):
img_data = list(data.T.to_dict().values())
f, ax = plt.subplots(3,3, figsize=(16,18))
for i,data_row in enumerate(img_data):
patientImage = data_row['patientId']
# dcm_file = '/content/stage_2_train_images/'+'{}.dcm'.format(patientImage)
dcm_file = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'+'{}.dcm'.format(patientImage)
# Use dcmread instead of read_file
data_row_img_data = dcm.dcmread(dcm_file)
modality = data_row_img_data.Modality
age = data_row_img_data.PatientAge
sex = data_row_img_data.PatientSex
data_row_img = dcm.dcmread(dcm_file)
ax[i//3, i%3].imshow(data_row_img.pixel_array, cmap=plt.cm.bone)
ax[i//3, i%3].axis('off')
ax[i//3, i%3].set_title('ID: {}\nModality: {} Age: {} Sex: {} Target: {}\nClass: {}\Bounds: {}:{}:{}:{}'.format(
data_row['patientId'],
modality, age, sex, data_row['Target'], data_row['class'],
data_row['x'],data_row['y'],data_row['width'],data_row['height']))
label = data_row["class"]
if not math.isnan(data_row['x']):
x, y, width, height = data_row['x'],data_row['y'],data_row['width'],data_row['height']
rect = patches.Rectangle((x, y),width, height,
linewidth = 2,
edgecolor = 'r',
facecolor = 'none')
# Draw the bounding box on top of the image
ax[i//3, i%3].add_patch(rect)
plt.show()
# Function to preprocess and visualize images
def preprocess_and_visualize(image_path, target):
# Load DICOM image
ds = dcm.dcmread(image_path)
image = ds.pixel_array
# Normalize pixel values to [0, 1]
image = image / 255.0
# Display the image
plt.figure(figsize=(6, 6))
plt.imshow(image, cmap=plt.cm.gray)
plt.title(f"Image Class: {target}")
plt.axis('off')
plt.show()
# Function to preprocess and visualize images
def preprocess_and_visualize(image_path, target):
# Load DICOM image
ds = dcm.dcmread(image_path)
image = ds.pixel_array
# Normalize pixel values to [0, 1]
image = image / 255.0
# Display the image
plt.figure(figsize=(6, 6))
plt.imshow(image, cmap=plt.cm.gray)
plt.title(f"Image Class: {target}")
plt.axis('off')
plt.show()
def get_feature_distribution(data, feature):
# Count for each label
label_counts = data[feature].value_counts()
# Count the number of items in each class
total_samples = len(data)
print("Feature: {}".format(feature))
for i in range(len(label_counts)):
label = label_counts.index[i]
count = label_counts.values[i]
percent = int((count / total_samples) * 10000) / 100
print("{:<30s}: {} which is {}% of the total data in the dataset".format(label, count, percent))
def show_dicom_images(data):
img_data = list(data.T.to_dict().values())
f, ax = plt.subplots(3,3, figsize=(16,18))
for i,data_row in enumerate(img_data):
patientImage = data_row['patientId']
dcm_file = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'+'{}.dcm'.format(patientImage)
# Use dcmread instead of read_file
data_row_img_data = dcm.dcmread(dcm_file)
modality = data_row_img_data.Modality
age = data_row_img_data.PatientAge
sex = data_row_img_data.PatientSex
data_row_img = dcm.dcmread(dcm_file)
ax[i//3, i%3].imshow(data_row_img.pixel_array, cmap=plt.cm.bone)
ax[i//3, i%3].axis('off')
ax[i//3, i%3].set_title('ID: {}\nModality: {} Age: {} Sex: {} Target: {}\nClass: {}\nPart: {}\nViewPosition: {}'.format(
data_row['patientId'],
modality, age, sex, data_row['Target'], data_row['class'],
data_row_img_data.BodyPartExamined, data_row_img_data.ViewPosition))
label = data_row["class"]
if not math.isnan(data_row['x']):
x, y, width, height = data_row['x'],data_row['y'],data_row['width'],data_row['height']
rect = patches.Rectangle((x, y),width, height,
linewidth = 2,
edgecolor = 'r',
facecolor = 'none')
# Draw the bounding box on top of the image
ax[i//3, i%3].add_patch(rect)
plt.show()
# ds = dcm.dcmread(image_path)
# print("------------Diffrent Methods to read image data ------------");
# print("1. Read By Tuple (Tuple of 2 integer):-")
# print("Patient's Name = ", data_row_img_data[0][((0x0010,0x0010))].value);
# print("Modality = ", data_row_img_data[0][((0x0008, 0x0060))].value);
# print("Body Part Examined = ", data_row_img_data[0][((0x0018, 0x0015))].value);
# print("2. Read By Access Methods:")
# print("Patient's Name = ", data_row_img_data[0].PatientName );
# print("Modality = ", data_row_img_data[0].Modality);
# print("Body Part Examined =", data_row_img_data[0].PatientID) ;
# print("3. Read By Data Frame:")
# print("Patient's Name = ", df_Dicom_train_Image_raw_data.loc[0,"Patient's Name"]);
# print("Body Part Examined = ", df_Dicom_train_Image_raw_data.loc[0,"Modality"]);
# print("Body Part Examined = ", df_Dicom_train_Image_raw_data.loc[0,"Body Part Examined"]);
#Step 5: Display images with bounding box. [ 5 points ]
sample_patient_ids = list(train_image_class_map.keys())[:5]
image_dir = "/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images"
for patient_id in sample_patient_ids:
image_path = os.path.join(image_dir, f"{patient_id}.dcm")
if os.path.exists(image_path):
target = train_image_class_map[patient_id]
preprocess_and_visualize(image_path, target)
else:
print(f"Image not found for patient ID: {patient_id}")
#view images with target is 1
inspectImages(training_data[training_data['Target']==1].sample(9))
inspectImages(training_data[training_data['Target']==0].sample(9))
#Distribution of bounding box counts per patient
plt.figure(figsize=(8, 6))
sns.histplot(training_data['number_of_boxes'], bins=20, kde=True)
plt.title('Distribution of Bounding Box Counts per Patient')
plt.xlabel('Number of Bounding Boxes')
plt.ylabel('Frequency')
plt.show()
#Relationship between target and number of bounding boxes
plt.figure(figsize=(8, 6))
sns.boxplot(x='Target', y='number_of_boxes', data=training_data)
plt.title('Relationship between Target and Number of Bounding Boxes')
plt.xlabel('Target (0: No Pneumonia, 1: Pneumonia)')
plt.ylabel('Number of Bounding Boxes')
plt.show()
#Correlation matrix of numerical features
numerical_features = ['Target', 'x', 'y', 'width', 'height', 'number_of_boxes']
correlation_matrix = training_data[numerical_features].corr()
plt.figure(figsize=(10, 8))
sns.heatmap(correlation_matrix, annot=True, cmap='coolwarm')
plt.title('Correlation Matrix of Numerical Features')
plt.show()
#display Metadata of the image so the remaining information can be added to the dataset
sample_patientId = training_data['patientId'][0]
dcm_file = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'+'{}.dcm'.format(sample_patientId)
dcm_data = dcm.dcmread(dcm_file)
print('Metadata of the image consists of \n', dcm_data)
Metadata of the image consists of Dataset.file_meta ------------------------------- (0002,0000) File Meta Information Group Length UL: 202 (0002,0001) File Meta Information Version OB: b'\x00\x01' (0002,0002) Media Storage SOP Class UID UI: Secondary Capture Image Storage (0002,0003) Media Storage SOP Instance UID UI: 1.2.276.0.7230010.3.1.4.8323329.28530.1517874485.775526 (0002,0010) Transfer Syntax UID UI: JPEG Baseline (Process 1) (0002,0012) Implementation Class UID UI: 1.2.276.0.7230010.3.0.3.6.0 (0002,0013) Implementation Version Name SH: 'OFFIS_DCMTK_360' ------------------------------------------------- (0008,0005) Specific Character Set CS: 'ISO_IR 100' (0008,0016) SOP Class UID UI: Secondary Capture Image Storage (0008,0018) SOP Instance UID UI: 1.2.276.0.7230010.3.1.4.8323329.28530.1517874485.775526 (0008,0020) Study Date DA: '19010101' (0008,0030) Study Time TM: '000000.00' (0008,0050) Accession Number SH: '' (0008,0060) Modality CS: 'CR' (0008,0064) Conversion Type CS: 'WSD' (0008,0090) Referring Physician's Name PN: '' (0008,103E) Series Description LO: 'view: PA' (0010,0010) Patient's Name PN: '0004cfab-14fd-4e49-80ba-63a80b6bddd6' (0010,0020) Patient ID LO: '0004cfab-14fd-4e49-80ba-63a80b6bddd6' (0010,0030) Patient's Birth Date DA: '' (0010,0040) Patient's Sex CS: 'F' (0010,1010) Patient's Age AS: '51' (0018,0015) Body Part Examined CS: 'CHEST' (0018,5101) View Position CS: 'PA' (0020,000D) Study Instance UID UI: 1.2.276.0.7230010.3.1.2.8323329.28530.1517874485.775525 (0020,000E) Series Instance UID UI: 1.2.276.0.7230010.3.1.3.8323329.28530.1517874485.775524 (0020,0010) Study ID SH: '' (0020,0011) Series Number IS: '1' (0020,0013) Instance Number IS: '1' (0020,0020) Patient Orientation CS: '' (0028,0002) Samples per Pixel US: 1 (0028,0004) Photometric Interpretation CS: 'MONOCHROME2' (0028,0010) Rows US: 1024 (0028,0011) Columns US: 1024 (0028,0030) Pixel Spacing DS: [0.14300000000000002, 0.14300000000000002] (0028,0100) Bits Allocated US: 8 (0028,0101) Bits Stored US: 8 (0028,0102) High Bit US: 7 (0028,0103) Pixel Representation US: 0 (0028,2110) Lossy Image Compression CS: '01' (0028,2114) Lossy Image Compression Method CS: 'ISO_10918_1' (7FE0,0010) Pixel Data OB: Array of 142006 elements
by looking at above sample we can see that dicom file contains some of the information that can be used for further analysis such as sex, age, body part examined, view position and modality.
Size of this image is 1024 x 1024 (rows x columns).
from glob import glob
training_image_path = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'
images = pd.DataFrame({'path': glob(os.path.join(training_image_path, '*.dcm'))})
images['patientId'] = images['path'].map(lambda x:os.path.splitext(os.path.basename(x))[0])
print('Columns in the training images dataframe: {}'.format(list(images.columns)))
Columns in the training images dataframe: ['path', 'patientId']
# Merging the images dataframe with training_data dataframe
training_data = training_data.merge(images, on = 'patientId', how = 'left')
print('After merging the two dataframe, the training_data has {} rows and {} columns.'.format(training_data.shape[0], training_data.shape[1]))
After merging the two dataframe, the training_data has 30227 rows and 9 columns.
#view final data
print('The training_data dataframe as of now stands like\n')
training_data.head()
The training_data dataframe as of now stands like
| patientId | x | y | width | height | Target | class | number_of_boxes | path | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 | Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... |
# use tqdm
from tqdm import tqdm
# Assuming 'training_data' and 'images' DataFrames are already defined as in your provided code.
metadata_cols = ['Modality', 'PatientAge', 'PatientSex', 'BodyPartExamined', 'ViewPosition', 'ConversionType', 'Rows', 'Columns', 'PixelSpacing']
metadata_df = pd.DataFrame(columns=metadata_cols)
for index, row in tqdm(training_data.iterrows(), total=len(training_data)):
dcm_file = row['path']
try:
dcm_data = dcm.dcmread(dcm_file)
metadata_row = {col: getattr(dcm_data, col, None) for col in metadata_cols} # Handle potential missing attributes
metadata_df = pd.concat([metadata_df, pd.DataFrame([metadata_row])], ignore_index=True)
except Exception as e:
print(f"Error processing {dcm_file}: {e}")
# Handle errors appropriately (e.g., fill with NaN or skip the row)
metadata_row = {col: None for col in metadata_cols} # Fill with NaN for the problematic row
metadata_df = pd.concat([metadata_df, pd.DataFrame([metadata_row])], ignore_index=True)
# Concatenate the metadata with the training data
training_data = pd.concat([training_data, metadata_df], axis=1)
100%|██████████| 30227/30227 [03:26<00:00, 146.14it/s]
training_data
| patientId | x | y | width | height | Target | class | number_of_boxes | path | Modality | PatientAge | PatientSex | BodyPartExamined | ViewPosition | ConversionType | Rows | Columns | PixelSpacing | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 51 | F | CHEST | PA | WSD | 1024 | 1024 | [0.14300000000000002, 0.14300000000000002] |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 48 | F | CHEST | PA | WSD | 1024 | 1024 | [0.19431099999999998, 0.19431099999999998] |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 19 | M | CHEST | AP | WSD | 1024 | 1024 | [0.168, 0.168] |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 | Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 28 | M | CHEST | PA | WSD | 1024 | 1024 | [0.14300000000000002, 0.14300000000000002] |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 32 | F | CHEST | AP | WSD | 1024 | 1024 | [0.139, 0.139] |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 30222 | c1ec14ff-f6d7-4b38-b0cb-fe07041cbdc8 | 185.0 | 298.0 | 228.0 | 379.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 54 | M | CHEST | AP | WSD | 1024 | 1024 | [0.139, 0.139] |
| 30223 | c1edf42b-5958-47ff-a1e7-4f23d99583ba | NaN | NaN | NaN | NaN | 0 | Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 46 | F | CHEST | PA | WSD | 1024 | 1024 | [0.14300000000000002, 0.14300000000000002] |
| 30224 | c1f6b555-2eb1-4231-98f6-50a963976431 | NaN | NaN | NaN | NaN | 0 | Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 45 | M | CHEST | PA | WSD | 1024 | 1024 | [0.168, 0.168] |
| 30225 | c1f7889a-9ea9-4acb-b64c-b737c929599a | 570.0 | 393.0 | 261.0 | 345.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 72 | F | CHEST | AP | WSD | 1024 | 1024 | [0.139, 0.139] |
| 30226 | c1f7889a-9ea9-4acb-b64c-b737c929599a | 233.0 | 424.0 | 201.0 | 356.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 72 | F | CHEST | AP | WSD | 1024 | 1024 | [0.139, 0.139] |
30227 rows × 18 columns
# Saving the training_data for further use:
training_data.to_pickle('training_data.pkl')
print('Modality for the images obtained is: {} \n'.format(training_data['Modality'].unique()[0]))
Modality for the images obtained is: CR
#check and examine other added columns with differnt analysis
training_data.columns
Index(['patientId', 'x', 'y', 'width', 'height', 'Target', 'class',
'number_of_boxes', 'path', 'Modality', 'PatientAge', 'PatientSex',
'BodyPartExamined', 'ViewPosition', 'ConversionType', 'Rows', 'Columns',
'PixelSpacing'],
dtype='object')
get_feature_distribution(training_data.drop_duplicates('patientId'), 'PatientSex')
Feature: PatientSex M : 15166 which is 56.83% of the total data in the dataset F : 11518 which is 43.16% of the total data in the dataset
#Patient their sex wise class distribution
plt.figure(figsize=(8, 6))
sns.countplot(x='PatientSex', hue='class', data=training_data.drop_duplicates('patientId'))
plt.title('Patient Sex vs. Class Distribution')
plt.xlabel('Patient Sex')
plt.ylabel('Count')
plt.show()
#patient their sex wise target distribution
plt.figure(figsize=(8, 6))
sns.countplot(x='PatientSex', hue='Target', data=training_data.drop_duplicates('patientId'))
plt.title('Patient Sex vs. Target Distribution')
plt.xlabel('Patient Sex')
plt.ylabel('Count')
plt.show()
print('Distribution of `PatientAge`: Overall and Target = 1')
fig = plt.figure(figsize = (10, 6))
ax = fig.add_subplot(121)
g = (sns.distplot(training_data['PatientAge']).set_title('Distribution of PatientAge'))
ax = fig.add_subplot(122)
g = (sns.distplot(training_data.drop_duplicates('patientId').loc[training_data['Target'] == 1, 'PatientAge']).set_title('Distribution of PatientAge vs PnuemoniaEvidence'))
Distribution of `PatientAge`: Overall and Target = 1
<ipython-input-62-4a4a96525421>:5: UserWarning:
`distplot` is a deprecated function and will be removed in seaborn v0.14.0.
Please adapt your code to use either `displot` (a figure-level function with
similar flexibility) or `histplot` (an axes-level function for histograms).
For a guide to updating your code to use the new functions, please see
https://gist.github.com/mwaskom/de44147ed2974457ad6372750bbe5751
g = (sns.distplot(training_data['PatientAge']).set_title('Distribution of PatientAge'))
<ipython-input-62-4a4a96525421>:8: UserWarning:
`distplot` is a deprecated function and will be removed in seaborn v0.14.0.
Please adapt your code to use either `displot` (a figure-level function with
similar flexibility) or `histplot` (an axes-level function for histograms).
For a guide to updating your code to use the new functions, please see
https://gist.github.com/mwaskom/de44147ed2974457ad6372750bbe5751
g = (sns.distplot(training_data.drop_duplicates('patientId').loc[training_data['Target'] == 1, 'PatientAge']).set_title('Distribution of PatientAge vs PnuemoniaEvidence'))
print('Check images obtained near {} areas.'.format(training_data['BodyPartExamined'].unique()[0]))
Check images obtained near CHEST areas.
get_feature_distribution(training_data.drop_duplicates('patientId'), 'ViewPosition')
Feature: ViewPosition PA : 14511 which is 54.38% of the total data in the dataset AP : 12173 which is 45.61% of the total data in the dataset
The ViewPosition attribute in the DICOM metadata describes the patient's position during the X-ray acquisition. Common values include:
- PA (Posteroanterior): X-ray beam enters the posterior (back) of the patient and exits the anterior (front). This is the standard view for chest X-rays.
- AP (Anteroposterior): X-ray beam enters the anterior (front) and exits the posterior (back). Often used for patients who can't stand or when a portable X-ray machine is used.
Image Quality Assessment: Different view positions might affect image quality and the visibility of certain lung regions. Analyzing the distribution can reveal if certain views are under- or over-represented, potentially impacting model performance.
In summary, ViewPosition is a crucial piece of metadata that provides context about how the image was acquired and can potentially improve the analysis or modeling of the chest X-rays.
#Check AP and PA distribution where target=1 (phenumonia)
print('The distribution of View Position when there is an evidence of Pneumonia:\n')
_ = training_data.drop_duplicates('patientId').loc[training_data['Target'] == 1, 'ViewPosition'].value_counts().sort_index(ascending = False).plot(kind = 'pie', autopct = '%.0f%%').set_ylabel('')
The distribution of View Position when there is an evidence of Pneumonia:
print('Conversion Type for the data in Training Data: ', training_data['ConversionType'].unique()[0])
Conversion Type for the data in Training Data: WSD
print(f'The training images has {training_data.Rows.unique()[0]} rows and {training_data.Columns.unique()[0]} columns.')
The training images has 1024 rows and 1024 columns.
print('The minimum and maximum recorded age of the patients are {} and {} respectively.'.format(training_data['PatientAge'].min(), training_data['PatientAge'].max()))
The minimum and maximum recorded age of the patients are 1 and 92 respectively.
# Convert 'PatientAge' to numeric, handling errors
training_data['PatientAge'] = pd.to_numeric(training_data['PatientAge'], errors='coerce')
plt.figure(figsize=(10, 6))
sns.histplot(training_data['PatientAge'], kde=True)
plt.title('Distribution of Patient Age')
plt.xlabel('Patient Age')
plt.ylabel('Frequency')
plt.show()
plt.figure(figsize=(10, 6))
sns.histplot(training_data[training_data['Target'] == 1]['PatientAge'], kde=True)
plt.title('Distribution of Patient Age for Patients with Pneumonia')
plt.xlabel('Patient Age')
plt.ylabel('Frequency')
plt.show()
# Calculate patient percentages by age group
age_groups = pd.cut(training_data['PatientAge'], bins=range(0, 101, 10))
age_percentages = training_data.groupby(age_groups)['patientId'].count() / len(training_data) * 100
#added agewise bins to dataset
training_data['PatientAgeBins'] = pd.cut(training_data['PatientAge'], bins=range(0, 101, 10))
training_data.drop_duplicates('patientId')['PatientAgeBins'].value_counts()
# Plot the patient percentages by age group
plt.figure(figsize=(12, 6))
age_percentages.plot(kind='bar')
plt.title('Patient Percentage by Age Group')
plt.xlabel('Age Group')
plt.ylabel('Percentage of Patients')
plt.xticks(rotation=45)
plt.show()
<ipython-input-69-367fd3f1a3ba>:21: FutureWarning: The default of observed=False is deprecated and will be changed to True in a future version of pandas. Pass observed=False to retain current behavior or observed=True to adopt the future default and silence this warning. age_percentages = training_data.groupby(age_groups)['patientId'].count() / len(training_data) * 100
training_data.head()
| patientId | x | y | width | height | Target | class | number_of_boxes | path | Modality | PatientAge | PatientSex | BodyPartExamined | ViewPosition | ConversionType | Rows | Columns | PixelSpacing | PatientAgeBins | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0004cfab-14fd-4e49-80ba-63a80b6bddd6 | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 51 | F | CHEST | PA | WSD | 1024 | 1024 | [0.14300000000000002, 0.14300000000000002] | (50, 60] |
| 1 | 00313ee0-9eaa-42f4-b0ab-c148ed3241cd | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 48 | F | CHEST | PA | WSD | 1024 | 1024 | [0.19431099999999998, 0.19431099999999998] | (40, 50] |
| 2 | 00322d4d-1c29-4943-afc9-b6754be640eb | NaN | NaN | NaN | NaN | 0 | No Lung Opacity / Not Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 19 | M | CHEST | AP | WSD | 1024 | 1024 | [0.168, 0.168] | (10, 20] |
| 3 | 003d8fa0-6bf1-40ed-b54c-ac657f8495c5 | NaN | NaN | NaN | NaN | 0 | Normal | 1 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 28 | M | CHEST | PA | WSD | 1024 | 1024 | [0.14300000000000002, 0.14300000000000002] | (20, 30] |
| 4 | 00436515-870c-4b36-a041-de91049b9ab4 | 264.0 | 152.0 | 213.0 | 379.0 | 1 | Lung Opacity | 2 | /content/drive/MyDrive/Vishal_Notebook/rsna-pn... | CR | 32 | F | CHEST | AP | WSD | 1024 | 1024 | [0.139, 0.139] | (30, 40] |
# Plot patient age bins vs patient sex
plt.figure(figsize=(12, 6))
sns.countplot(x='PatientAgeBins', hue='PatientSex', data=training_data.drop_duplicates('patientId'))
plt.title('Patient Age Bins vs. Patient Sex Distribution')
plt.xlabel('Patient Age Bins')
plt.ylabel('Count')
plt.xticks(rotation=45)
plt.show()
# Plot patient age bins, patient sex, and class
plt.figure(figsize=(12, 6))
sns.countplot(x='PatientAgeBins', hue='class', data=training_data.drop_duplicates('patientId'))
plt.title('Patient Age Bins vs. Class Distribution')
plt.xlabel('Patient Age Bins')
plt.ylabel('Count')
plt.xticks(rotation=45)
plt.show()
1. Class Imbalance:
The pie chart shows a significant class imbalance, with a majority of patients being negative for pneumonia. This imbalance needs to be addressed during model training (e.g., using class weights or resampling techniques).
2. Bounding Box Analysis:
- The code shows that most patients have a single bounding box.
- A small percentage have multiple bounding boxes, indicating multiple pneumonia instances in a single image.
- The distribution plot of bounding boxes shows the frequency of patient's with different numbers of boxes.
- The box plot comparing the target variable and the number of bounding boxes helps visualize the relationship between the presence of pneumonia and the number of bounding boxes detected.
3. Image Metadata Analysis: The code extracts various metadata fields (Modality, PatientAge, PatientSex, etc.) from DICOM files.
The analysis can be improved using this metadata:
- Patient Sex: Analyzing the relationship between patient sex and the presence or absence of pneumonia.
- Patient Age: Investigating the distribution of patient ages, identifying if certain age groups have a higher prevalence of pneumonia.
- The distributions of ages of all patients and patients with pneumonia are shown in separate histograms.
- Age bins were created, and counts of patients within those age bins were displayed.
- A bar chart displays the percentage of patients within each age group.
- Body Part Examined: Checking if all images are of the chest area.
- View Position: Analyzing the distribution of 'PA' and 'AP' views, potentially assessing if certain view positions might bias the model.
- A pie chart shows the distribution of view position for patients with pneumonia.
- Pixel Spacing and Image Size: Analyzing if there are inconsistencies in image dimensions or pixel spacing that could affect model performance.
- The code prints the row and column size of the images.
- Correlation Matrix: The correlation heatmap reveals relationships between numerical features, including 'Target', bounding box coordinates, and the number of bounding boxes.
4. Data Visualization:
- The code visualizes the sample images with bounding boxes overlaid.
- The visualizations are crucial for understanding how the model is performing.
Summary
- class imbalance is present in the dataset.
- The training dataset(both of the csv files and training image folder) contains information of 26684 patient (unique)
- Most of the recorded patient don't have pneumonia(target-0)
- some of the patients have more than one bounding box. The maximum being 4.
- The classes "No Lung Opacity/Not Normal" and "Normal" is associated with the target = 0 whereas "Lung Opacity" belong to Target = 1.
- The images are present in dicom format, from which information like patientAge, PatientSex, ViewPosition etc are obtained
- There are two ways from which images were ontained AP and PA. The age ranges from 1- 92.
Model Building
#Step 6: Design, train and test basic CNN models for classification.
#import libraries
import numpy as np
import pickle
import matplotlib.pyplot as plt
import cv2
import os
import tensorflow as tf
from tensorflow.keras.layers import ( Input,
Conv2D,
MaxPooling2D,
UpSampling2D,
Concatenate,
Activation,
Dropout,BatchNormalization,
Reshape,ZeroPadding2D, Convolution2D, Flatten,Dense
)
import functools
from tensorflow import keras
from tensorflow.keras.models import Model,Sequential
from tensorflow.keras.applications import MobileNet #mobilenet architecture.
from tensorflow.keras.applications.mobilenet import preprocess_input
from tensorflow.keras.callbacks import EarlyStopping, ReduceLROnPlateau
from tensorflow.keras.metrics import Recall, Precision
from tensorflow.keras import backend as K
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelBinarizer
import matplotlib.pyplot as plt
import pandas as pd
import random
from tensorflow.keras.applications import MobileNetV2
from tensorflow.keras.models import Model
from tensorflow.keras.layers import Dense, GlobalAveragePooling2D, Input
from tensorflow.keras.optimizers import Adam
from tensorflow.keras.utils import Sequence
import random
## take a 1000 images from the dataset for processing
model_trainigdata = training_data.groupby('class', group_keys=False).apply(lambda x: x.sample(10))
<ipython-input-75-11af65491338>:2: DeprecationWarning: DataFrameGroupBy.apply operated on the grouping columns. This behavior is deprecated, and in a future version of pandas the grouping columns will be excluded from the operation. Either pass `include_groups=False` to exclude the groupings or explicitly select the grouping columns after groupby to silence this warning.
model_trainigdata = training_data.groupby('class', group_keys=False).apply(lambda x: x.sample(10))
model_trainigdata["class"].value_counts()
| count | |
|---|---|
| class | |
| Lung Opacity | 10 |
| No Lung Opacity / Not Normal | 10 |
| Normal | 10 |
model_trainigdata.info()
<class 'pandas.core.frame.DataFrame'> Index: 30 entries, 17570 to 17064 Data columns (total 19 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 patientId 30 non-null object 1 x 10 non-null float64 2 y 10 non-null float64 3 width 10 non-null float64 4 height 10 non-null float64 5 Target 30 non-null int64 6 class 30 non-null object 7 number_of_boxes 30 non-null int64 8 path 30 non-null object 9 Modality 30 non-null object 10 PatientAge 30 non-null int64 11 PatientSex 30 non-null object 12 BodyPartExamined 30 non-null object 13 ViewPosition 30 non-null object 14 ConversionType 30 non-null object 15 Rows 30 non-null object 16 Columns 30 non-null object 17 PixelSpacing 30 non-null object 18 PatientAgeBins 30 non-null category dtypes: category(1), float64(4), int64(3), object(11) memory usage: 4.9+ KB
train_df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 30227 entries, 0 to 30226 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 patientId 30227 non-null object 1 x 9555 non-null float64 2 y 9555 non-null float64 3 width 9555 non-null float64 4 height 9555 non-null float64 5 Target 30227 non-null int64 dtypes: float64(4), int64(1), object(1) memory usage: 1.4+ MB
images = []
ADJUSTED_IMAGE_SIZE = 128
imageList = []
classLabels = []
labels = []
originalImage = []
# Function to read the image from the path and reshape the image to size
def readAndReshapeImage(image):
img = np.array(image).astype(np.uint8)
## Resize the image
res = cv2.resize(img,(ADJUSTED_IMAGE_SIZE,ADJUSTED_IMAGE_SIZE), interpolation = cv2.INTER_LINEAR)
return res
## Read the imahge and resize the image
def populateImage(rowData):
for index, row in rowData.iterrows():
patientId = row.patientId
classlabel = row["class"]
dcm_file = '/content/drive/MyDrive/Vishal_Notebook/rsna-pneumonia-detection-challenge/stage_2_train_images/'+'{}.dcm'.format(patientId)
dcm_data = dcm.dcmread(dcm_file)
img = dcm_data.pixel_array
## Converting the image to 3 channels as the dicom image pixel does not have colour classes wiht it
if len(img.shape) != 3 or img.shape[2] != 3:
img = np.stack((img,) * 3, -1)
imageList.append(readAndReshapeImage(img))
# originalImage.append(img)
classLabels.append(classlabel)
tmpImages = np.array(imageList)
tmpLabels = np.array(classLabels)
# originalImages = np.array(originalImage)
return tmpImages,tmpLabels
# Function to create a dataframe for results
def createResultDf(name,accuracy,testscore):
result = pd.DataFrame({'Method':[name], 'accuracy': [accuracy] ,'Test Score':[testscore]})
return result
## Reading the images into numpy array
images,labels = populateImage(model_trainigdata)
#encoding the lablels
enc = LabelBinarizer()
y2 = enc.fit_transform(labels)
# splitting into train ,test and validation data
X_train, X_test, y_train, y_test = train_test_split(images, y2, test_size=0.3, random_state=50)
X_test, X_val, y_test, y_val = train_test_split(X_test,y_test, test_size = 0.5, random_state=50)
#Create basic vgg16 cnn model for classification.
def create_vgg16_model(input_shape, num_classes):
model = Sequential()
# 32 filters with 3x3 kernal and no padding
model.add(Conv2D(32, (3, 3), activation='relu', padding='same', input_shape=input_shape))
model.add(Conv2D(32, (3, 3), activation='relu', padding='same'))
model.add(MaxPooling2D((2, 2), strides=(2, 2)))
# 64 filters with 3x3 kernal and no padding
model.add(Conv2D(64, (3, 3), activation='relu', padding='same', input_shape=input_shape))
model.add(Conv2D(64, (3, 3), activation='relu', padding='same'))
model.add(MaxPooling2D((2, 2), strides=(2, 2)))
# # 128 filters with 3x3 kernal and no padding
model.add(Conv2D(128, (3, 3), activation='relu', padding='same'))
model.add(Conv2D(128, (3, 3), activation='relu', padding='same'))
model.add(MaxPooling2D((2, 2), strides=(2, 2)))
# # # 256 filters with 3x3 kernal and no padding
# model.add(Conv2D(256, (3, 3), activation='relu', padding='same'))
# model.add(Conv2D(256, (3, 3), activation='relu', padding='same'))
# model.add(Conv2D(256, (3, 3), activation='relu', padding='same'))
# model.add(MaxPooling2D((2, 2), strides=(2, 2)))
# Classification block
model.add(Flatten())
model.add(Dense(4096, activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(4096, activation='relu'))
model.add(Dropout(0.5))
model.add(Dense(num_classes, activation='softmax'))
return model
# Model summary
input_shape = (128, 128, 3) # Adjust input shape as needed
num_classes = 3 # Replace with the actual number of classes
vgg16_model = create_vgg16_model(input_shape, num_classes)
vgg16_model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy'])
vgg16_model.summary()
/usr/local/lib/python3.10/dist-packages/keras/src/layers/convolutional/base_conv.py:107: UserWarning: Do not pass an `input_shape`/`input_dim` argument to a layer. When using Sequential models, prefer using an `Input(shape)` object as the first layer in the model instead. super().__init__(activity_regularizer=activity_regularizer, **kwargs)
Model: "sequential"
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┓ ┃ Layer (type) ┃ Output Shape ┃ Param # ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━┩ │ conv2d (Conv2D) │ (None, 128, 128, 32) │ 896 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ conv2d_1 (Conv2D) │ (None, 128, 128, 32) │ 9,248 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ max_pooling2d (MaxPooling2D) │ (None, 64, 64, 32) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ conv2d_2 (Conv2D) │ (None, 64, 64, 64) │ 18,496 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ conv2d_3 (Conv2D) │ (None, 64, 64, 64) │ 36,928 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ max_pooling2d_1 (MaxPooling2D) │ (None, 32, 32, 64) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ conv2d_4 (Conv2D) │ (None, 32, 32, 128) │ 73,856 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ conv2d_5 (Conv2D) │ (None, 32, 32, 128) │ 147,584 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ max_pooling2d_2 (MaxPooling2D) │ (None, 16, 16, 128) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ flatten_1 (Flatten) │ (None, 32768) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ dense_1 (Dense) │ (None, 4096) │ 134,221,824 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ dropout_1 (Dropout) │ (None, 4096) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ dense_2 (Dense) │ (None, 4096) │ 16,781,312 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ dropout_2 (Dropout) │ (None, 4096) │ 0 │ ├──────────────────────────────────────┼─────────────────────────────┼─────────────────┤ │ dense_3 (Dense) │ (None, 3) │ 12,291 │ └──────────────────────────────────────┴─────────────────────────────┴─────────────────┘
Total params: 151,302,435 (577.17 MB)
Trainable params: 151,302,435 (577.17 MB)
Non-trainable params: 0 (0.00 B)
# Now Train the model
epochs = 2 # Adjust the number of epochs as needed
batch_size = 32 # Adjust the batch size as needed
history = vgg16_model.fit(
X_train, y_train,
epochs=epochs,
batch_size=batch_size,
validation_data=(X_val, y_val)
)
# Evaluate the model
loss, accuracy = vgg16_model.evaluate(X_test, y_test, verbose=0)
print(f"Test Loss: {loss:.4f}")
print(f"Test Accuracy: {accuracy:.4f}")
#Further analysis and model improvement can be done here. Example below
#Plot training & validation accuracy values
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.title('Model accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
# Plot training & validation loss values
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model loss')
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
Epoch 1/2 1/1 ━━━━━━━━━━━━━━━━━━━━ 10s 10s/step - accuracy: 0.2857 - loss: 13.1125 - val_accuracy: 0.2000 - val_loss: 64.8382 Epoch 2/2 1/1 ━━━━━━━━━━━━━━━━━━━━ 6s 6s/step - accuracy: 0.6190 - loss: 68.7941 - val_accuracy: 0.6000 - val_loss: 382.2352 Test Loss: 855.0109 Test Accuracy: 0.2500
#Further analysis and model improvement can be done here. Example below
#Plot training & validation accuracy values
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.title('Model accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
# Plot training & validation loss values
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model loss')
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
# Example: Confusion Matrix
from sklearn.metrics import confusion_matrix
import seaborn as sns
y_pred = vgg16_model.predict(X_test)
y_pred_classes = np.argmax(y_pred, axis=1)
y_true_classes = np.argmax(y_test, axis=1)
conf_matrix = confusion_matrix(y_true_classes, y_pred_classes)
plt.figure(figsize=(8, 6))
sns.heatmap(conf_matrix, annot=True, fmt='d', cmap='Blues')
plt.title('Confusion Matrix')
plt.xlabel('Predicted Labels')
plt.ylabel('True Labels')
plt.show()
# Example: Try different optimizers, learning rates, or model architectures
# Example: Add regularization (dropout, L1/L2) to prevent overfitting
# Example: Data augmentation to increase training data diversity
# Example of saving the trained model
vgg16_model.save("vgg16_pneumonia_model.h5")
# Example of loading the saved model:
# from tensorflow.keras.models import load_model
# loaded_model = load_model("vgg16_pneumonia_model.h5")
1/1 ━━━━━━━━━━━━━━━━━━━━ 0s 403ms/step
WARNING:absl:You are saving your model as an HDF5 file via `model.save()` or `keras.saving.save_model(model)`. This file format is considered legacy. We recommend using instead the native Keras format, e.g. `model.save('my_model.keras')` or `keras.saving.save_model(model, 'my_model.keras')`.
Analysis of the provided code:
- Data Loading and Preprocessing:
The code loads data from DICOM files, merges it with metadata, and performs exploratory data analysis (EDA).
Key preprocessing steps include: - Merging dataframes: Combines image metadata and patient information. - DICOM metadata extraction: Reads relevant metadata fields (Modality, PatientAge, PatientSex, etc.). Handles missing values. - Data visualization: Generates various plots (distributions, histograms, count plots) to understand data characteristics.
Exploratory Data Analysis (EDA):
- The EDA section provides valuable insights into the dataset, including:
- Class imbalance: Visualizes class distribution, revealing a significant imbalance between classes.
- Patient demographics: Analyzes age, sex distributions, and their relationships to the target variable.
- Image metadata: Examines various DICOM metadata like ViewPosition, BodyPartExamined, ConversionType, image size, etc.
- Visualizations like histograms, countplots, pie charts, and bar charts are employed for comprehensive data understanding.
- The EDA section provides valuable insights into the dataset, including:
Model Building (VGG16-like CNN):
- A custom CNN model, inspired by VGG16, is created using Keras.
- Architecture: The model consists of convolutional layers, max-pooling layers, flatten layer, dense layers, and a softmax output layer.
- Compilation: The model is compiled with the Adam optimizer, categorical cross-entropy loss, and accuracy as the metric.
- Training: The model is trained for 30 epochs with a batch size of 32. Validation data is used for monitoring performance during training.
- Evaluation: The trained model is evaluated on a separate test set using test loss and accuracy as metrics.
Model Evaluation and Visualization:
- Performance metrics: Presents test loss and accuracy.
- Visualization: Displays training/validation accuracy and loss curves over epochs, providing insights into model learning trends.
- Confusion matrix: Visualizes the model's predictions against true labels, showing performance for each class.
Model Saving and Loading:
- The trained model is saved to a file (vgg16_pneumonia_model.h5) for future use.
- Code for loading the model is provided for convenience.
Areas for Improvement:
- Handling class imbalance: Strategies like oversampling, undersampling, or using class weights during training could improve performance.
- Data augmentation: Applying random transformations to the training images can help the model generalize better and potentially reduce overfitting.
- Hyperparameter tuning: Experiment with different optimizers, learning rates, batch sizes, and network architectures to optimize model performance.
- Feature engineering: Extract additional features from DICOM files or images that may improve classification accuracy.
- Model regularization: Add dropout or L1/L2 regularization to the model to mitigate potential overfitting.
- More detailed error analysis: Examine misclassified images to understand why they are difficult for the model.
- Experiment with different CNN architectures: Explore more advanced models or transfer learning techniques using pre-trained models.
6.2 Import a Pretrained Model of MobileNetV2¶
# Set target size (e.g., 224x224 for MobileNetV2)
IMG_SIZE = (224, 224)
# Load pretrained model without the top layers
base_model = MobileNetV2(weights='imagenet', include_top=False, input_shape=(IMG_SIZE[0], IMG_SIZE[1], 3))
# Add custom layers for pneumonia classification
x = base_model.output
x = GlobalAveragePooling2D()(x) # Global average pooling
x = Dense(128, activation='relu')(x) # Fully connected layer
predictions = Dense(1, activation='sigmoid')(x) # Sigmoid for binary classification
Downloading data from https://storage.googleapis.com/tensorflow/keras-applications/mobilenet_v2/mobilenet_v2_weights_tf_dim_ordering_tf_kernels_1.0_224_no_top.h5 9406464/9406464 ━━━━━━━━━━━━━━━━━━━━ 0s 0us/step
#Combine base model with custom layers
model = Model(inputs=base_model.input, outputs=predictions)
# Freeze base model layers for transfer learning
for layer in base_model.layers:
layer.trainable = False
# Compile the model
model.compile(optimizer=Adam(learning_rate=0.001), loss='binary_crossentropy', metrics=['accuracy'])
import pydicom as dcm
def populateImage_MobileNet(dicom_path, target_size):
dicom = dcm.dcmread(dicom_path) # Load DICOM file
img = dicom.pixel_array # Extract pixel array
if img.dtype == np.float64:
img = (img * 255 / img.max()).astype(np.uint8) # Normalize
img_resized = cv2.resize(img, target_size) # Resize to target size
if len(img_resized.shape) == 2: # If single-channel
img_resized = cv2.cvtColor(img_resized, cv2.COLOR_GRAY2RGB) # Convert single channel (grayscale) to 3 channels
return img_resized
class DICOMDataGenerator(Sequence):
#This method initializes the generator with required data and settings.
def __init__(self, file_paths, labels, batch_size, target_size):
self.file_paths = file_paths
self.labels = labels
self.batch_size = batch_size
self.target_size = target_size
#Returns the number of batches per epoch.
def __len__(self):
return int(np.ceil(len(self.file_paths) / self.batch_size))
# Fetching a Batch - Loads and preprocesses a batch of DICOM images and their corresponding labels.
def __getitem__(self, index):
batch_paths = self.file_paths[index * self.batch_size:(index + 1) * self.batch_size]
batch_labels = self.labels[index * self.batch_size:(index + 1) * self.batch_size]
images = []
for path in batch_paths:
img = populateImage_MobileNet(path, self.target_size)
images.append(img)
return np.array(images), np.array(batch_labels)
#Shuffles the data at the end of each epoch to improve training randomness.
def on_epoch_end(self):
# Shuffle the data at the end of each epoch
combined = list(zip(self.file_paths, self.labels))
random.shuffle(combined)
self.file_paths, self.labels = zip(*combined)
# Example: List of DICOM file paths and labels (0 for normal, 1 for pneumonia)
dicom_paths = model_trainigdata.head(100)['path'].tolist();
labels = model_trainigdata.head(100)['Target'].tolist();
# Split dataset
train_paths, val_paths, train_labels, val_labels = train_test_split(dicom_paths, labels, test_size=0.2, random_state=42)
# Create data generators
batch_size = 10
train_gen = DICOMDataGenerator(train_paths, train_labels, batch_size, IMG_SIZE)
val_gen = DICOMDataGenerator(val_paths, val_labels, batch_size, IMG_SIZE)
# Train the model
history = model.fit(
train_gen,
validation_data=val_gen,
epochs=10,
steps_per_epoch=len(train_gen),
validation_steps=len(val_gen)
)
Epoch 1/10
/usr/local/lib/python3.10/dist-packages/keras/src/trainers/data_adapters/py_dataset_adapter.py:122: UserWarning: Your `PyDataset` class should call `super().__init__(**kwargs)` in its constructor. `**kwargs` can include `workers`, `use_multiprocessing`, `max_queue_size`. Do not pass these arguments to `fit()`, as they will be ignored. self._warn_if_super_not_called()
3/3 ━━━━━━━━━━━━━━━━━━━━ 8s 1s/step - accuracy: 0.4321 - loss: 0.8431 - val_accuracy: 0.6667 - val_loss: 0.8931 Epoch 2/10
/usr/lib/python3.10/contextlib.py:153: UserWarning: Your input ran out of data; interrupting training. Make sure that your dataset or generator can generate at least `steps_per_epoch * epochs` batches. You may need to use the `.repeat()` function when building your dataset. self.gen.throw(typ, value, traceback)
3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 112ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 3/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 2s 637ms/step - accuracy: 0.7756 - loss: 0.3856 - val_accuracy: 0.3333 - val_loss: 0.8077 Epoch 4/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 65ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 5/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 2s 567ms/step - accuracy: 0.5583 - loss: 0.5193 - val_accuracy: 0.6667 - val_loss: 0.9280 Epoch 6/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 12ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 7/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 1s 466ms/step - accuracy: 0.7173 - loss: 0.3719 - val_accuracy: 0.6667 - val_loss: 1.2829 Epoch 8/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 20ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 9/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 1s 364ms/step - accuracy: 0.7702 - loss: 0.3367 - val_accuracy: 0.6667 - val_loss: 0.9733 Epoch 10/10 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 12ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00
test_loss, test_accuracy = model.evaluate(val_gen)
print(f"Test Loss: {test_loss}, Test Accuracy: {test_accuracy}")
1/1 ━━━━━━━━━━━━━━━━━━━━ 0s 249ms/step - accuracy: 0.6667 - loss: 0.9733 Test Loss: 0.9733180403709412, Test Accuracy: 0.6666666865348816
for layer in base_model.layers:
layer.trainable = True
# Compile with a lower learning rate for fine-tuning
model.compile(optimizer=Adam(learning_rate=0.0001), loss='binary_crossentropy', metrics=['accuracy'])
# Continue training
model.fit(
train_gen,
validation_data=val_gen,
epochs=5,
steps_per_epoch=len(train_gen),
validation_steps=len(val_gen)
)
Epoch 1/5 3/3 ━━━━━━━━━━━━━━━━━━━━ 39s 3s/step - accuracy: 0.7798 - loss: 0.7662 - val_accuracy: 0.6667 - val_loss: 1.1181 Epoch 2/5 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 55ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 3/5 3/3 ━━━━━━━━━━━━━━━━━━━━ 7s 1s/step - accuracy: 0.7500 - loss: 0.3147 - val_accuracy: 0.6667 - val_loss: 0.9934 Epoch 4/5 3/3 ━━━━━━━━━━━━━━━━━━━━ 0s 13ms/step - accuracy: 0.0000e+00 - loss: 0.0000e+00 Epoch 5/5 3/3 ━━━━━━━━━━━━━━━━━━━━ 5s 2s/step - accuracy: 1.0000 - loss: 0.0991 - val_accuracy: 0.6667 - val_loss: 0.9556
<keras.src.callbacks.history.History at 0x7c490120abf0>
# ResNet clasification model
from keras.applications import ResNet50
from keras.models import Model
from keras.layers import Dense, Flatten, Dropout
from keras.optimizers import Adam
# Load the ResNet50 model without the top layers
base_model = ResNet50(weights='imagenet', include_top=False, input_shape=(128, 128, 3))
# Freeze the base model layers (optional, if you use pre-trained weights)
base_model.trainable = False
# Add custom classification layers on top
x = base_model.output
x = Flatten()(x) # Flatten the feature maps
x = Dense(1024, activation='relu')(x)
x = Dropout(0.5)(x) # Dropout for regularization
x = Dense(num_classes, activation='softmax')(x) # Replace with the number of classes in your dataset
# Create the full model
resnet_model = Model(inputs=base_model.input, outputs=x)
# Compile the model
resnet_model.compile(
optimizer=Adam(learning_rate=0.001),
loss='categorical_crossentropy',
metrics=['accuracy']
)
# Model summary
resnet_model.summary()
Model: "functional_16"
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┓ ┃ Layer (type) ┃ Output Shape ┃ Param # ┃ Connected to ┃ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━┩ │ input_layer_3 │ (None, 128, 128, 3) │ 0 │ - │ │ (InputLayer) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv1_pad (ZeroPadding2D) │ (None, 134, 134, 3) │ 0 │ input_layer_3[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv1_conv (Conv2D) │ (None, 64, 64, 64) │ 9,472 │ conv1_pad[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv1_bn │ (None, 64, 64, 64) │ 256 │ conv1_conv[0][0] │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv1_relu (Activation) │ (None, 64, 64, 64) │ 0 │ conv1_bn[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ pool1_pad (ZeroPadding2D) │ (None, 66, 66, 64) │ 0 │ conv1_relu[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ pool1_pool (MaxPooling2D) │ (None, 32, 32, 64) │ 0 │ pool1_pad[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_1_conv │ (None, 32, 32, 64) │ 4,160 │ pool1_pool[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_1_bn │ (None, 32, 32, 64) │ 256 │ conv2_block1_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_1_relu │ (None, 32, 32, 64) │ 0 │ conv2_block1_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_2_conv │ (None, 32, 32, 64) │ 36,928 │ conv2_block1_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_2_bn │ (None, 32, 32, 64) │ 256 │ conv2_block1_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_2_relu │ (None, 32, 32, 64) │ 0 │ conv2_block1_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_0_conv │ (None, 32, 32, 256) │ 16,640 │ pool1_pool[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_3_conv │ (None, 32, 32, 256) │ 16,640 │ conv2_block1_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_0_bn │ (None, 32, 32, 256) │ 1,024 │ conv2_block1_0_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_3_bn │ (None, 32, 32, 256) │ 1,024 │ conv2_block1_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_add (Add) │ (None, 32, 32, 256) │ 0 │ conv2_block1_0_bn[0][… │ │ │ │ │ conv2_block1_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block1_out │ (None, 32, 32, 256) │ 0 │ conv2_block1_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_1_conv │ (None, 32, 32, 64) │ 16,448 │ conv2_block1_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_1_bn │ (None, 32, 32, 64) │ 256 │ conv2_block2_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_1_relu │ (None, 32, 32, 64) │ 0 │ conv2_block2_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_2_conv │ (None, 32, 32, 64) │ 36,928 │ conv2_block2_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_2_bn │ (None, 32, 32, 64) │ 256 │ conv2_block2_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_2_relu │ (None, 32, 32, 64) │ 0 │ conv2_block2_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_3_conv │ (None, 32, 32, 256) │ 16,640 │ conv2_block2_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_3_bn │ (None, 32, 32, 256) │ 1,024 │ conv2_block2_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_add (Add) │ (None, 32, 32, 256) │ 0 │ conv2_block1_out[0][0… │ │ │ │ │ conv2_block2_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block2_out │ (None, 32, 32, 256) │ 0 │ conv2_block2_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_1_conv │ (None, 32, 32, 64) │ 16,448 │ conv2_block2_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_1_bn │ (None, 32, 32, 64) │ 256 │ conv2_block3_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_1_relu │ (None, 32, 32, 64) │ 0 │ conv2_block3_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_2_conv │ (None, 32, 32, 64) │ 36,928 │ conv2_block3_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_2_bn │ (None, 32, 32, 64) │ 256 │ conv2_block3_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_2_relu │ (None, 32, 32, 64) │ 0 │ conv2_block3_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_3_conv │ (None, 32, 32, 256) │ 16,640 │ conv2_block3_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_3_bn │ (None, 32, 32, 256) │ 1,024 │ conv2_block3_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_add (Add) │ (None, 32, 32, 256) │ 0 │ conv2_block2_out[0][0… │ │ │ │ │ conv2_block3_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv2_block3_out │ (None, 32, 32, 256) │ 0 │ conv2_block3_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_1_conv │ (None, 16, 16, 128) │ 32,896 │ conv2_block3_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_1_bn │ (None, 16, 16, 128) │ 512 │ conv3_block1_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_1_relu │ (None, 16, 16, 128) │ 0 │ conv3_block1_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_2_conv │ (None, 16, 16, 128) │ 147,584 │ conv3_block1_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_2_bn │ (None, 16, 16, 128) │ 512 │ conv3_block1_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_2_relu │ (None, 16, 16, 128) │ 0 │ conv3_block1_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_0_conv │ (None, 16, 16, 512) │ 131,584 │ conv2_block3_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_3_conv │ (None, 16, 16, 512) │ 66,048 │ conv3_block1_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_0_bn │ (None, 16, 16, 512) │ 2,048 │ conv3_block1_0_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_3_bn │ (None, 16, 16, 512) │ 2,048 │ conv3_block1_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_add (Add) │ (None, 16, 16, 512) │ 0 │ conv3_block1_0_bn[0][… │ │ │ │ │ conv3_block1_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block1_out │ (None, 16, 16, 512) │ 0 │ conv3_block1_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_1_conv │ (None, 16, 16, 128) │ 65,664 │ conv3_block1_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_1_bn │ (None, 16, 16, 128) │ 512 │ conv3_block2_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_1_relu │ (None, 16, 16, 128) │ 0 │ conv3_block2_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_2_conv │ (None, 16, 16, 128) │ 147,584 │ conv3_block2_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_2_bn │ (None, 16, 16, 128) │ 512 │ conv3_block2_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_2_relu │ (None, 16, 16, 128) │ 0 │ conv3_block2_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_3_conv │ (None, 16, 16, 512) │ 66,048 │ conv3_block2_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_3_bn │ (None, 16, 16, 512) │ 2,048 │ conv3_block2_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_add (Add) │ (None, 16, 16, 512) │ 0 │ conv3_block1_out[0][0… │ │ │ │ │ conv3_block2_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block2_out │ (None, 16, 16, 512) │ 0 │ conv3_block2_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_1_conv │ (None, 16, 16, 128) │ 65,664 │ conv3_block2_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_1_bn │ (None, 16, 16, 128) │ 512 │ conv3_block3_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_1_relu │ (None, 16, 16, 128) │ 0 │ conv3_block3_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_2_conv │ (None, 16, 16, 128) │ 147,584 │ conv3_block3_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_2_bn │ (None, 16, 16, 128) │ 512 │ conv3_block3_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_2_relu │ (None, 16, 16, 128) │ 0 │ conv3_block3_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_3_conv │ (None, 16, 16, 512) │ 66,048 │ conv3_block3_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_3_bn │ (None, 16, 16, 512) │ 2,048 │ conv3_block3_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_add (Add) │ (None, 16, 16, 512) │ 0 │ conv3_block2_out[0][0… │ │ │ │ │ conv3_block3_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block3_out │ (None, 16, 16, 512) │ 0 │ conv3_block3_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_1_conv │ (None, 16, 16, 128) │ 65,664 │ conv3_block3_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_1_bn │ (None, 16, 16, 128) │ 512 │ conv3_block4_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_1_relu │ (None, 16, 16, 128) │ 0 │ conv3_block4_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_2_conv │ (None, 16, 16, 128) │ 147,584 │ conv3_block4_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_2_bn │ (None, 16, 16, 128) │ 512 │ conv3_block4_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_2_relu │ (None, 16, 16, 128) │ 0 │ conv3_block4_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_3_conv │ (None, 16, 16, 512) │ 66,048 │ conv3_block4_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_3_bn │ (None, 16, 16, 512) │ 2,048 │ conv3_block4_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_add (Add) │ (None, 16, 16, 512) │ 0 │ conv3_block3_out[0][0… │ │ │ │ │ conv3_block4_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv3_block4_out │ (None, 16, 16, 512) │ 0 │ conv3_block4_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_1_conv │ (None, 8, 8, 256) │ 131,328 │ conv3_block4_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block1_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block1_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block1_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block1_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block1_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_0_conv │ (None, 8, 8, 1024) │ 525,312 │ conv3_block4_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block1_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_0_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block1_0_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block1_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block1_0_bn[0][… │ │ │ │ │ conv4_block1_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block1_out │ (None, 8, 8, 1024) │ 0 │ conv4_block1_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_1_conv │ (None, 8, 8, 256) │ 262,400 │ conv4_block1_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block2_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block2_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block2_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block2_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block2_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block2_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block2_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block1_out[0][0… │ │ │ │ │ conv4_block2_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block2_out │ (None, 8, 8, 1024) │ 0 │ conv4_block2_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_1_conv │ (None, 8, 8, 256) │ 262,400 │ conv4_block2_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block3_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block3_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block3_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block3_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block3_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block3_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block3_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block2_out[0][0… │ │ │ │ │ conv4_block3_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block3_out │ (None, 8, 8, 1024) │ 0 │ conv4_block3_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_1_conv │ (None, 8, 8, 256) │ 262,400 │ conv4_block3_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block4_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block4_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block4_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block4_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block4_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block4_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block4_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block3_out[0][0… │ │ │ │ │ conv4_block4_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block4_out │ (None, 8, 8, 1024) │ 0 │ conv4_block4_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_1_conv │ (None, 8, 8, 256) │ 262,400 │ conv4_block4_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block5_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block5_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block5_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block5_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block5_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block5_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block5_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block4_out[0][0… │ │ │ │ │ conv4_block5_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block5_out │ (None, 8, 8, 1024) │ 0 │ conv4_block5_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_1_conv │ (None, 8, 8, 256) │ 262,400 │ conv4_block5_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_1_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block6_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_1_relu │ (None, 8, 8, 256) │ 0 │ conv4_block6_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_2_conv │ (None, 8, 8, 256) │ 590,080 │ conv4_block6_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_2_bn │ (None, 8, 8, 256) │ 1,024 │ conv4_block6_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_2_relu │ (None, 8, 8, 256) │ 0 │ conv4_block6_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_3_conv │ (None, 8, 8, 1024) │ 263,168 │ conv4_block6_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_3_bn │ (None, 8, 8, 1024) │ 4,096 │ conv4_block6_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_add (Add) │ (None, 8, 8, 1024) │ 0 │ conv4_block5_out[0][0… │ │ │ │ │ conv4_block6_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv4_block6_out │ (None, 8, 8, 1024) │ 0 │ conv4_block6_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_1_conv │ (None, 4, 4, 512) │ 524,800 │ conv4_block6_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_1_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block1_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_1_relu │ (None, 4, 4, 512) │ 0 │ conv5_block1_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_2_conv │ (None, 4, 4, 512) │ 2,359,808 │ conv5_block1_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_2_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block1_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_2_relu │ (None, 4, 4, 512) │ 0 │ conv5_block1_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_0_conv │ (None, 4, 4, 2048) │ 2,099,200 │ conv4_block6_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_3_conv │ (None, 4, 4, 2048) │ 1,050,624 │ conv5_block1_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_0_bn │ (None, 4, 4, 2048) │ 8,192 │ conv5_block1_0_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_3_bn │ (None, 4, 4, 2048) │ 8,192 │ conv5_block1_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_add (Add) │ (None, 4, 4, 2048) │ 0 │ conv5_block1_0_bn[0][… │ │ │ │ │ conv5_block1_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block1_out │ (None, 4, 4, 2048) │ 0 │ conv5_block1_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_1_conv │ (None, 4, 4, 512) │ 1,049,088 │ conv5_block1_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_1_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block2_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_1_relu │ (None, 4, 4, 512) │ 0 │ conv5_block2_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_2_conv │ (None, 4, 4, 512) │ 2,359,808 │ conv5_block2_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_2_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block2_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_2_relu │ (None, 4, 4, 512) │ 0 │ conv5_block2_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_3_conv │ (None, 4, 4, 2048) │ 1,050,624 │ conv5_block2_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_3_bn │ (None, 4, 4, 2048) │ 8,192 │ conv5_block2_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_add (Add) │ (None, 4, 4, 2048) │ 0 │ conv5_block1_out[0][0… │ │ │ │ │ conv5_block2_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block2_out │ (None, 4, 4, 2048) │ 0 │ conv5_block2_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_1_conv │ (None, 4, 4, 512) │ 1,049,088 │ conv5_block2_out[0][0] │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_1_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block3_1_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_1_relu │ (None, 4, 4, 512) │ 0 │ conv5_block3_1_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_2_conv │ (None, 4, 4, 512) │ 2,359,808 │ conv5_block3_1_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_2_bn │ (None, 4, 4, 512) │ 2,048 │ conv5_block3_2_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_2_relu │ (None, 4, 4, 512) │ 0 │ conv5_block3_2_bn[0][… │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_3_conv │ (None, 4, 4, 2048) │ 1,050,624 │ conv5_block3_2_relu[0… │ │ (Conv2D) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_3_bn │ (None, 4, 4, 2048) │ 8,192 │ conv5_block3_3_conv[0… │ │ (BatchNormalization) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_add (Add) │ (None, 4, 4, 2048) │ 0 │ conv5_block2_out[0][0… │ │ │ │ │ conv5_block3_3_bn[0][… │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ conv5_block3_out │ (None, 4, 4, 2048) │ 0 │ conv5_block3_add[0][0] │ │ (Activation) │ │ │ │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ flatten_2 (Flatten) │ (None, 32768) │ 0 │ conv5_block3_out[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ dense_6 (Dense) │ (None, 1024) │ 33,555,456 │ flatten_2[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ dropout_3 (Dropout) │ (None, 1024) │ 0 │ dense_6[0][0] │ ├───────────────────────────┼────────────────────────┼────────────────┼────────────────────────┤ │ dense_7 (Dense) │ (None, 3) │ 3,075 │ dropout_3[0][0] │ └───────────────────────────┴────────────────────────┴────────────────┴────────────────────────┘
Total params: 57,146,243 (218.00 MB)
Trainable params: 33,558,531 (128.02 MB)
Non-trainable params: 23,587,712 (89.98 MB)
# Train the model
history = resnet_model.fit(
X_train, y_train,
validation_data=(X_val, y_val),
epochs=50,
batch_size=32
)
# Evaluate the model
loss, accuracy = resnet_model.evaluate(X_test, y_test, verbose=0)
print(f"Test Loss: {loss:.4f}")
print(f"Test Accuracy: {accuracy:.4f}")
Epoch 1/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 24s 24s/step - accuracy: 0.4762 - loss: 2.4244 - val_accuracy: 0.6000 - val_loss: 16.9759 Epoch 2/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 0.7143 - loss: 3.6958 - val_accuracy: 0.6000 - val_loss: 22.3862 Epoch 3/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 0.7143 - loss: 9.5107 - val_accuracy: 0.8000 - val_loss: 10.0144 Epoch 4/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 0.9524 - loss: 0.2967 - val_accuracy: 0.4000 - val_loss: 23.5436 Epoch 5/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.2000 - val_loss: 70.2554 Epoch 6/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 0.9524 - loss: 2.9563 - val_accuracy: 0.2000 - val_loss: 87.2590 Epoch 7/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 0.9524 - loss: 0.6778 - val_accuracy: 0.2000 - val_loss: 71.8739 Epoch 8/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 7.3796e-08 - val_accuracy: 0.2000 - val_loss: 57.7418 Epoch 9/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 55.1698 Epoch 10/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0021 - val_accuracy: 0.6000 - val_loss: 55.2170 Epoch 11/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 0.9048 - loss: 2.6529 - val_accuracy: 0.6000 - val_loss: 51.0944 Epoch 12/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 5.6766e-09 - val_accuracy: 0.6000 - val_loss: 47.1808 Epoch 13/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 43.5741 Epoch 14/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 40.3052 Epoch 15/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 37.3393 Epoch 16/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 34.6401 Epoch 17/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 32.1604 Epoch 18/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 29.9319 Epoch 19/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 27.9120 Epoch 20/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 26.0629 Epoch 21/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 24.3576 Epoch 22/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 22.7897 Epoch 23/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 21.3525 Epoch 24/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 20.0368 Epoch 25/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 18.8346 Epoch 26/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 17.7306 Epoch 27/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 16.7235 Epoch 28/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.8012 Epoch 29/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.0482 Epoch 30/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.8606 Epoch 31/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.8612 Epoch 32/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.8770 Epoch 33/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.9052 Epoch 34/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.9492 Epoch 35/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.0045 Epoch 36/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.0666 Epoch 37/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.1318 Epoch 38/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 15.1979 Epoch 39/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 0.9524 - loss: 1.8281 - val_accuracy: 0.4000 - val_loss: 18.4035 Epoch 40/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 21.6966 Epoch 41/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 24.9272 Epoch 42/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 28.9622 Epoch 43/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 32.6679 Epoch 44/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 36.0253 Epoch 45/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 0.9524 - loss: 0.3017 - val_accuracy: 0.6000 - val_loss: 30.5192 Epoch 46/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 25.6555 Epoch 47/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 21.2863 Epoch 48/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 4s 4s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.6000 - val_loss: 17.4278 Epoch 49/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 2s 2s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 14.1676 Epoch 50/50 1/1 ━━━━━━━━━━━━━━━━━━━━ 3s 3s/step - accuracy: 1.0000 - loss: 0.0000e+00 - val_accuracy: 0.4000 - val_loss: 11.5948 Test Loss: 162.8343 Test Accuracy: 0.0000
# Plot training & validation accuracy values
plt.plot(history.history['accuracy'])
plt.plot(history.history['val_accuracy'])
plt.title('Model accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()
# Plot training & validation loss values
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('Model loss')
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(['Train', 'Test'], loc='upper left')
plt.show()